9 lines
120 B
Rust
9 lines
120 B
Rust
#![feature(asm)]
|
|
|
|
fn main() {
|
|
asm!("xor %eax, %eax"
|
|
:
|
|
: "+test"("a") //~ ERROR E0663
|
|
);
|
|
}
|