rust/src/test/ui/error-codes/E0259.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

8 lines
108 B
Rust

#![feature(rustc_private)]
extern crate alloc;
extern crate libc as alloc;
//~^ ERROR E0259
fn main() {}