2018-12-16 21:21:47 -06:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
|
2015-06-17 19:41:55 -05:00
|
|
|
use foo::baz;
|
2017-05-17 22:29:58 -05:00
|
|
|
use bar::baz; //~ ERROR the name `baz` is defined multiple times
|
2015-06-17 19:41:55 -05:00
|
|
|
|
2015-07-31 12:04:34 -05:00
|
|
|
use foo::Quux;
|
2017-05-17 22:29:58 -05:00
|
|
|
use bar::Quux; //~ ERROR the name `Quux` is defined multiple times
|
2015-06-17 19:41:55 -05:00
|
|
|
|
2015-08-05 14:56:49 -05:00
|
|
|
use foo::blah;
|
2017-05-17 22:29:58 -05:00
|
|
|
use bar::blah; //~ ERROR the name `blah` is defined multiple times
|
2015-06-17 19:41:55 -05:00
|
|
|
|
2015-08-05 14:56:49 -05:00
|
|
|
use foo::WOMP;
|
2017-05-17 22:29:58 -05:00
|
|
|
use bar::WOMP; //~ ERROR the name `WOMP` is defined multiple times
|
2015-06-17 19:41:55 -05:00
|
|
|
|
|
|
|
fn main() {}
|
|
|
|
|
|
|
|
mod foo {
|
|
|
|
pub mod baz {}
|
|
|
|
pub trait Quux { }
|
|
|
|
pub type blah = (f64, u32);
|
|
|
|
pub const WOMP: u8 = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
mod bar {
|
|
|
|
pub mod baz {}
|
|
|
|
pub type Quux = i32;
|
2016-02-22 16:33:38 -06:00
|
|
|
pub struct blah { x: i8 }
|
2015-06-17 19:41:55 -05:00
|
|
|
pub const WOMP: i8 = -5;
|
|
|
|
}
|