rust/tests/ui/imports/no-std-inject.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
116 B
Rust
Raw Normal View History

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