rust/tests/ui/imports/issue-25396.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
606 B
Rust
Raw Normal View History

#![allow(non_camel_case_types)]
use foo::baz;
use bar::baz; //~ ERROR the name `baz` is defined multiple times
use foo::Quux;
use bar::Quux; //~ ERROR the name `Quux` is defined multiple times
2015-08-05 19:56:49 +00:00
use foo::blah;
use bar::blah; //~ ERROR the name `blah` is defined multiple times
2015-08-05 19:56:49 +00:00
use foo::WOMP;
use bar::WOMP; //~ ERROR the name `WOMP` is defined multiple times
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 22:33:38 +00:00
pub struct blah { x: i8 }
pub const WOMP: i8 = -5;
}