rust/src/test/ui/error-codes/E0662.rs
2020-03-26 15:49:22 +00:00

11 lines
167 B
Rust

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