rust/src/test/ui/E0662.rs

9 lines
120 B
Rust
Raw Normal View History

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