rust/src/test/ui/error-codes/E0260.rs
Vadim Petrochenkov 434152157f Remove lint annotations in specific crates that are already enforced by rustbuild
Remove some random unnecessary lint `allow`s
2019-07-28 18:46:24 +03:00

11 lines
168 B
Rust

extern crate alloc;
mod alloc {
//~^ ERROR the name `alloc` is defined multiple times [E0260]
pub trait MyTrait {
fn do_something();
}
}
fn main() {}