rust/src/test/ui/E0664.rs

10 lines
129 B
Rust
Raw Normal View History

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