rust/tests/ui/imports/extern-with-ambiguous-2.rs

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

19 lines
426 B
Rust
Raw Normal View History

//@ 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::*;
2024-01-21 05:17:28 -06:00
//^ FIXME: An ambiguity error should be thrown for `error`,
// as there is ambiguity present within `extern-with-ambiguous-2-extern.rs`.
fn main() {}