]> git.lizzy.rs Git - rust.git/blob - src/test/ui/crate-loading/missing-std.rs
Merge commit '23d11428de3e973b34a5090a78d62887f821c90e' into clippyup
[rust.git] / src / test / ui / crate-loading / missing-std.rs
1 // compile-flags: --target x86_64-unknown-uefi
2 // needs-llvm-components: x86
3 // rustc-env:CARGO=/usr/bin/cargo
4 #![feature(no_core)]
5 #![no_core]
6 extern crate core;
7 //~^ ERROR can't find crate for `core`
8 //~| NOTE can't find crate
9 //~| NOTE target may not be installed
10 //~| HELP consider building the standard library from source with `cargo build -Zbuild-std`
11 //~| HELP consider downloading the target with `rustup target add x86_64-unknown-uefi`
12 fn main() {}