mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
302 B
Rust
14 lines
302 B
Rust
//@ 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;
|
|
}
|