mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-05 19:21:51 +00:00
10 lines
195 B
Rust
10 lines
195 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.
|
|
}
|