blob: 063066df11c81dee5d29ed627010e8a40249a238 [file] [log] [blame]
// build-fail
// dont-check-compiler-stderr
// ignore-emscripten
#![feature(llvm_asm)]
fn main() {
unsafe {
llvm_asm!("nowayisthisavalidinstruction"); //~ ERROR instruction
}
}