blob: 80382c0d2fcb5a6dbb233ec451964a581b99fea9 [file] [log] [blame]
#![feature(alloc)]
#![allow(unused_extern_crates)]
extern crate alloc;
mod alloc {
//~^ ERROR the name `alloc` is defined multiple times [E0260]
pub trait MyTrait {
fn do_something();
}
}
fn main() {}