]> git.proxmox.com Git - rustc.git/blame - src/test/ui/crate-loading/missing-std.rs
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / crate-loading / missing-std.rs
CommitLineData
cdc7bbd5 1// compile-flags: --target x86_64-unknown-uefi
136023e0 2// needs-llvm-components: x86
cdc7bbd5 3// rustc-env:CARGO=/usr/bin/cargo
cdc7bbd5
XL
4#![no_core]
5extern crate core;
6//~^ ERROR can't find crate for `core`
7//~| NOTE can't find crate
8//~| NOTE target may not be installed
9//~| HELP consider building the standard library from source with `cargo build -Zbuild-std`
10//~| HELP consider downloading the target with `rustup target add x86_64-unknown-uefi`
11fn main() {}