rust/src/test/ui/E0660.rs
2018-12-25 21:08:33 -07:00

10 lines
141 B
Rust

#![feature(asm)]
fn main() {
let a;
asm!("nop" "nop");
//~^ ERROR E0660
asm!("nop" "nop" : "=r"(a));
//~^ ERROR E0660
}