]> git.proxmox.com Git - rustc.git/blame - src/test/ui/error-codes/E0661.rs
New upstream version 1.40.0+dfsg1
[rustc.git] / src / test / ui / error-codes / E0661.rs
CommitLineData
416331ca
XL
1// ignore-emscripten
2
83c7162d 3#![feature(asm)]
041b39d2 4
7453a54e 5fn main() {
e74abb32 6 let a; //~ ERROR type annotations needed
83c7162d
XL
7 asm!("nop" : "r"(a));
8 //~^ ERROR E0661
223e47cc 9}