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

10 lines
167 B
Rust

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