]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/error-codes/E0661.rs
New upstream version 1.40.0+dfsg1
[rustc.git] / src / test / ui / error-codes / E0661.rs
index 2440e3a446eb4777442afac2136bda5b95a37880..5ac0c415ae1b27e5265ec35f3298d5a9072a9384 100644 (file)
@@ -3,7 +3,7 @@
 #![feature(asm)]
 
 fn main() {
-    let a;
+    let a; //~ ERROR type annotations needed
     asm!("nop" : "r"(a));
     //~^ ERROR E0661
 }