Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
error-codes
/
E0260.rs
blob: f7eb220b08f597292433e769aa7adf2e2e1af443 [
file
] [
log
] [
blame
]
extern
crate alloc
;
mod
alloc
{
//~^ ERROR the name `alloc` is defined multiple times [E0260]
pub
trait
MyTrait
{
fn
do_something
();
}
}
fn
main
()
{}