rust/crates/syntax/test_data/parser/ok/0008_mod_item.rs
2020-08-12 18:30:53 +02:00

17 lines
No EOL
118 B
Rust

mod a;
mod b {
}
mod c {
fn foo() {
}
struct S {}
}
mod d {
#![attr]
mod e;
mod f {
}
}