]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/anon-params-denied-2018.rs
Rollup merge of #61207 - taiki-e:arbitrary_self_types-lifetime-elision-2, r=Centril
[rust.git] / src / test / ui / anon-params-denied-2018.rs
index 1489cccc5fbb9678b21aa5135a75688c80ab4b4e..abff8275064e24dfd8d922a003feab905deaa06a 100644 (file)
@@ -1,13 +1,18 @@
-// Test that anonymous parameters are disallowed in 2018 edition.
+// Tests that anonymous parameters are a hard error in edition 2018.
 
 // edition:2018
 
 trait T {
-    fn foo(i32); //~ ERROR expected identifier
+    fn foo(i32); //~ expected one of `:` or `@`, found `)`
 
     fn bar_with_default_impl(String, String) {}
-    //~^ ERROR expected identifier
-    //~| ERROR expected identifier
+    //~^ ERROR expected one of `:`
+    //~| ERROR expected one of `:`
+
+    // do not complain about missing `b`
+    fn baz(a:usize, b, c: usize) -> usize { //~ ERROR expected one of `:`
+        a + b + c
+    }
 }
 
 fn main() {}