rust/src/test/ui/E0663.rs

9 lines
120 B
Rust
Raw Normal View History

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