blob: e5b8156cfb32a598b9cfdcb4f80f54803265e5de [file] [log] [blame]
#![feature(asm)]
fn main() {
asm!("xor %eax, %eax"
:
: "+test"("a") //~ ERROR E0663
);
}