rust/tests/data/parser/ok/0008_mod_item.rs
Aleksey Kladov 1544e89c49 G: mod item
2018-01-09 22:35:55 +03: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 {
}
}