summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0661.rs
blob: 5ac0c415ae1b27e5265ec35f3298d5a9072a9384 (plain)
1
2
3
4
5
6
7
8
9
// ignore-emscripten

#![feature(asm)]

fn main() {
    let a; //~ ERROR type annotations needed
    asm!("nop" : "r"(a));
    //~^ ERROR E0661
}