]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/E0061.rs
New upstream version 1.12.0+dfsg1
[rustc.git] / src / test / compile-fail / E0061.rs
index 4a8eac2a9e2268d98e85dda3b9d6cb13d4edb998..ca04b059dc7f699cc0a576378b0ac94252a10d90 100644 (file)
@@ -11,5 +11,8 @@
 fn f(a: u16, b: &str) {}
 
 fn main() {
-    f(0); //~ ERROR E0061
+    f(0);
+    //~^ ERROR E0061
+    //~| NOTE expected 2 parameters
+    //~| NOTE the following parameter types were expected
 }