rust/tests/ui/imports/ambiguous-4.rs

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

10 lines
197 B
Rust
Raw Permalink Normal View History

//@ build-pass
//@ aux-build: ../ambiguous-4-extern.rs
extern crate ambiguous_4_extern;
fn main() {
ambiguous_4_extern::id();
2024-01-21 05:17:28 -06:00
//^ FIXME: `id` should be identified as an ambiguous item.
}