summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0260.rs
blob: 73b8934159fcf82384117dcc8ac29f42a7c3d4a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![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() {}