about summary refs log tree commit diff
path: root/tests/ui/imports/ambiguous-2.rs
blob: 087431485ad62205d44ba321197cd685c53ae525 (plain)
1
2
3
4
5
6
7
8
9
10
//@ 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.
}