rustc/tests/ui/imports/ambiguous-4.rs
2024-06-21 09:39:33 +02:00

10 lines
197 B
Rust

//@ build-pass
//@ aux-build: ../ambiguous-4-extern.rs
extern crate ambiguous_4_extern;
fn main() {
ambiguous_4_extern::id();
//^ FIXME: `id` should be identified as an ambiguous item.
}