mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +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() {}
|