Sign in
android
/
toolchain
/
rustc
/
d59a28787b7ba06edbd1e4528a42b66d67dc6a19
/
.
/
src
/
test
/
compile-fail
/
asm-src-loc-codegen-units.rs
blob: 5b8690c3b98ce8fb00524f802fa76998a0400ee6 [
file
] [
log
] [
blame
]
// compile-flags: -C codegen-units=2
// ignore-emscripten
#![
feature
(
llvm_asm
)]
fn
main
()
{
unsafe
{
llvm_asm
!(
"nowayisthisavalidinstruction"
);
//~ ERROR instruction
}
}