summaryrefslogtreecommitdiffstats
path: root/tests/ui/pub/pub-ident-struct-2.rs
blob: 50db4039d4fc114b3a020eabc761300b2ffc6f81 (plain)
1
2
3
4
5
6
7
8
// #60115

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

fn main() {}