]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0663.rs
Rollup merge of #82259 - osa1:issue82156, r=petrochenkov
[rust.git] / src / test / ui / error-codes / E0663.rs
1 // ignore-emscripten
2
3 #![feature(llvm_asm)]
4
5 fn main() {
6     llvm_asm!("xor %eax, %eax"
7               :
8               : "+test"("a") //~ ERROR E0663
9              );
10 }