blob: 387822d00f643172ced50df4c24392a07158acf8 [file] [log] [blame]
// build-fail
// dont-check-compiler-stderr
// compile-flags: -C codegen-units=2
// ignore-emscripten
#![feature(llvm_asm)]
fn main() {
unsafe {
llvm_asm!("nowayisthisavalidinstruction"); //~ ERROR instruction
}
}