2018-12-17 03:21:47 +00:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
|
2016-02-22 22:33:38 +00:00
|
|
|
mod foo { pub struct bar; }
|
2015-01-02 00:13:57 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let bar = 5;
|
2017-10-05 19:54:34 +00:00
|
|
|
//~^ ERROR mismatched types
|
2015-01-02 00:13:57 +00:00
|
|
|
use foo::bar;
|
|
|
|
}
|