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

#![feature(asm)]

fn main() {
    asm!("mov $$0x200, %eax"
         :
         :
         : "{eax}" //~ ERROR E0664
        );
}