Sign in
android
/
toolchain
/
rustc
/
fd666f2f11b6b870cdfff85689e078cd371668e2
/
.
/
src
/
test
/
ui
/
error-codes
/
E0254.rs
blob: d166aff56579201bc86a40c047b8a6636fb510eb [
file
]
#![
allow
(
unused_extern_crates
,
non_camel_case_types
)]
extern
crate alloc
;
mod
foo
{
pub
trait
alloc
{
fn
do_something
();
}
}
use
foo
::
alloc
;
//~^ ERROR E0254
fn
main
()
{}