summaryrefslogtreecommitdiffstats
path: root/src/test/ui/blind/blind-item-block-middle.rs
blob: 6cd3f3bd412b80a7aadbecc5d8543493b0035791 (plain)
1
2
3
4
5
6
7
8
9
#![allow(non_camel_case_types)]

mod foo { pub struct bar; }

fn main() {
    let bar = 5;
    //~^ ERROR mismatched types
    use foo::bar;
}