2021-04-22 19:23:30 +00:00
|
|
|
// compile-flags: --target x86_64-unknown-uefi
|
2021-06-13 18:19:39 +00:00
|
|
|
// needs-llvm-components: x86
|
2021-04-22 19:23:30 +00:00
|
|
|
// rustc-env:CARGO=/usr/bin/cargo
|
2021-11-26 20:37:56 +00:00
|
|
|
#![feature(no_core)]
|
2021-04-22 19:23:30 +00:00
|
|
|
#![no_core]
|
|
|
|
extern crate core;
|
|
|
|
//~^ ERROR can't find crate for `core`
|
|
|
|
//~| NOTE can't find crate
|
|
|
|
//~| NOTE target may not be installed
|
|
|
|
//~| HELP consider building the standard library from source with `cargo build -Zbuild-std`
|
|
|
|
//~| HELP consider downloading the target with `rustup target add x86_64-unknown-uefi`
|
|
|
|
fn main() {}
|