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

15 lines
169 B
Rust

#![allow(non_camel_case_types)]
extern crate alloc;
mod foo {
pub trait alloc {
fn do_something();
}
}
use foo::alloc;
//~^ ERROR E0254
fn main() {}