rust/crates/syntax/test_data/parser/ok/0008_mod_item.rs
2021-09-17 21:53:24 +03:00

13 lines
100 B
Rust

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