summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0664.rs
blob: 29ec7ced4fd6e4c3898f6b95297e584e71b2f531 (plain)
1
2
3
4
5
6
7
8
9
#![feature(asm)]

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