Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
error-codes
/
E0254.rs
blob: e291268be86e56333249110c4e63dcc58a4f1e75 [
file
] [
log
] [
blame
] [
edit
]
#![
allow
(
non_camel_case_types
)]
extern
crate alloc
;
mod
foo
{
pub
trait
alloc
{
fn
do_something
();
}
}
use
foo
::
alloc
;
//~^ ERROR E0254
fn
main
()
{}