blob: 80382c0d2fcb5a6dbb233ec451964a581b99fea9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#![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() {}
|