blob: 90b3f1f9714b216c5cec4c50ec4e0133df181129 [file] [log] [blame]
#![feature(asm)]
// only-x86_64
fn main() {
unsafe {
asm!("int $3"); //~ ERROR too few operands for instruction
//~| ERROR invalid operand in inline asm
}
}