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; }