]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0260.rs
Simplify SaveHandler trait
[rust.git] / src / test / ui / error-codes / E0260.rs
1 #![allow(unused_extern_crates)]
2
3 extern crate alloc;
4
5 mod alloc {
6 //~^ ERROR the name `alloc` is defined multiple times [E0260]
7     pub trait MyTrait {
8         fn do_something();
9     }
10 }
11
12 fn main() {}