blob: d29c31fafc2868232b9ced4cd2d913992e4dba06 [file] [log] [blame]
// ignore-emscripten no asm! support
#![feature(asm)]
fn main() {
unsafe {
asm! {"mov $0,$1"::"0"("bx"),"1"(0x00)}
//~^ ERROR: invalid value for constraint in inline assembly
}
}