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

#![feature(asm)]

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