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