rust/tests/ui/imports/auxiliary/extern-with-ambiguous-3-extern.rs

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

15 lines
137 B
Rust
Raw Normal View History

mod a {
pub mod error {}
}
pub use a::*;
mod b {
pub mod error {}
}
pub use b::*;
mod c {
pub mod error {}
}
pub use c::*;