rust/src/test/ui/no-std-inject.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

7 lines
116 B
Rust

#![no_std]
extern crate core; //~ ERROR: the name `core` is defined multiple times
extern crate std;
fn main() {}