]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0664.rs
Merge commit '7bfc26ec8e7a454786668e7e52ffe527fc649735' into clippyup
[rust.git] / src / test / ui / error-codes / E0664.rs
1 // ignore-emscripten
2
3 #![feature(llvm_asm)]
4
5 fn main() {
6     llvm_asm!("mov $$0x200, %eax"
7               :
8               :
9               : "{eax}" //~ ERROR E0664
10              );
11 }