rust/src/test/ui/E0662.rs
2018-12-25 21:08:33 -07:00

9 lines
120 B
Rust

#![feature(asm)]
fn main() {
asm!("xor %eax, %eax"
:
: "=test"("a") //~ ERROR E0662
);
}