Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
ab1f382ca8fa4a4c0dde58679207f9bec394fa0e
/
.
/
tests
/
ui
/
error-codes
/
E0254.rs
blob: e291268be86e56333249110c4e63dcc58a4f1e75 [
file
] [
log
] [
blame
]
#![
allow
(
non_camel_case_types
)]
extern
crate alloc
;
mod
foo
{
pub
trait
alloc
{
fn
do_something
();
}
}
use
foo
::
alloc
;
//~^ ERROR E0254
fn
main
()
{}