Sign in
rust
/
rust-lang
/
rust
/
refs/heads/auto
/
.
/
tests
/
ui
/
imports
/
ambiguous-4.rs
blob: e66d231f93cc3fc32338289c4639ec534174798d [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2015
//@ aux-build: ../ambiguous-4-extern.rs
extern
crate ambiguous_4_extern
;
fn
main
()
{
ambiguous_4_extern
::
id
();
//~ ERROR `id` is ambiguous
//~| WARN this was previously accepted
}