]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/no-std-inject.rs
Auto merge of #106853 - TimNN:undo-remap, r=oli-obk
[rust.git] / tests / ui / imports / no-std-inject.rs
1 #![no_std]
2
3 extern crate core; //~ ERROR: the name `core` is defined multiple times
4 extern crate std;
5
6 fn main() {}