Sign in
rust
/
rust-lang
/
rust
/
refs/heads/auto
/
.
/
tests
/
ui
/
imports
/
glob-conflict-cross-crate-2.rs
blob: b4dd3d8eeb443f0a3bb434d2dc43954c60d16368 [
file
] [
log
] [
blame
] [
edit
]
//@ aux-build:glob-conflict-cross-crate-2-extern.rs
extern
crate glob_conflict_cross_crate_2_extern
;
use
glob_conflict_cross_crate_2_extern
::*;
fn
main
()
{
let
_a
:
C
=
1
;
//~ ERROR `C` is ambiguous
//~| WARN this was previously accepted
}