mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
17 lines
286 B
Rust
17 lines
286 B
Rust
// check-pass
|
|
// edition: 2021
|
|
// aux-build: extern-with-ambiguous-2-extern.rs
|
|
|
|
extern crate extern_with_ambiguous_2_extern;
|
|
|
|
mod s {
|
|
pub mod error {
|
|
use extern_with_ambiguous_2_extern::*;
|
|
}
|
|
}
|
|
use s::*;
|
|
use extern_with_ambiguous_2_extern::*;
|
|
use error::*;
|
|
|
|
fn main() {}
|