mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-03 03:38:47 +00:00
13 lines
255 B
Rust
13 lines
255 B
Rust
// error-pattern: expected one of `,`, `::`, `as`, or `}`, found `;`
|
|
// error-pattern: this file contains an unclosed delimiter
|
|
// error-pattern: expected item, found `}`
|
|
use foo::{bar, baz;
|
|
|
|
use std::fmt::Display;
|
|
|
|
mod bar { }
|
|
|
|
mod baz { }
|
|
|
|
fn main() {}
|