mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
18 lines
359 B
Rust
18 lines
359 B
Rust
// check-pass
|
|
// edition: 2021
|
|
// aux-build: extern-with-ambiguous-3-extern.rs
|
|
// https://github.com/rust-lang/rust/pull/113099#issuecomment-1643974121
|
|
|
|
extern crate extern_with_ambiguous_3_extern;
|
|
|
|
mod s {
|
|
pub mod error {
|
|
use extern_with_ambiguous_3_extern::*;
|
|
}
|
|
}
|
|
use s::*;
|
|
use extern_with_ambiguous_3_extern::*;
|
|
use error::*;
|
|
|
|
fn main() {}
|