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