Files
rust/tests/ui/pub/pub-ident-struct-2.rs
2023-02-01 21:50:34 +01:00

9 lines
106 B
Rust

// #60115
mod foo {
pub bar();
//~^ ERROR missing `struct` for struct definition
}
fn main() {}