rust/tests/ui/imports/ambiguous-2.rs
2024-01-24 00:01:59 +08:00

11 lines
247 B
Rust

// check-pass
// aux-build: ../ambiguous-1.rs
// https://github.com/rust-lang/rust/pull/113099#issuecomment-1633574396
extern crate ambiguous_1;
fn main() {
ambiguous_1::id();
//^ FIXME: `id` should be identified as an ambiguous item.
}