blob: 854675c36391c770bbb5d65e250e8523985108d3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// ignore-emscripten
#![feature(llvm_asm)]
#![allow(deprecated)] // llvm_asm!
fn main() {
let a; //~ ERROR type annotations needed
llvm_asm!("nop" : "r"(a));
//~^ ERROR E0661
}
|