summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0663.rs
blob: cfbb4b37758cecac211b3b6e21981a96326d80da (plain)
1
2
3
4
5
6
7
8
9
10
// ignore-emscripten

#![feature(asm)]

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