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

8 lines
90 B
Rust

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