11 lines
167 B
Rust
11 lines
167 B
Rust
// ignore-emscripten
|
|
|
|
#![feature(llvm_asm)]
|
|
|
|
fn main() {
|
|
llvm_asm!("xor %eax, %eax"
|
|
:
|
|
: "=test"("a") //~ ERROR E0662
|
|
);
|
|
}
|