summaryrefslogtreecommitdiff
path: root/tests/ui/imports/issue-114682-6.rs
blob: d47b9f8a4e8571b18070c458ca3f6c521d0b8c16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ check-pass
//@ aux-build: issue-114682-6-extern.rs
// https://github.com/rust-lang/rust/pull/114682#issuecomment-1880755441

extern crate issue_114682_6_extern;

use issue_114682_6_extern::*;

fn main() {
    let log = 2;
    //^ `log` should be identified as an ambiguous item.
    let _ = log;
}