blob: 6cd3f3bd412b80a7aadbecc5d8543493b0035791 [file] [log] [blame]
#![allow(non_camel_case_types)]
mod foo { pub struct bar; }
fn main() {
let bar = 5;
//~^ ERROR mismatched types
use foo::bar;
}