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

#![feature(llvm_asm)]
#![allow(deprecated)] // llvm_asm!

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