2018-08-22 15:07:27 -05:00
|
|
|
// Tests that anonymous parameters are a hard error in edition 2018.
|
|
|
|
|
2018-08-22 14:08:29 -05:00
|
|
|
// edition:2018
|
|
|
|
|
|
|
|
trait T {
|
2018-08-22 15:07:27 -05:00
|
|
|
fn foo(i32); //~ expected one of `:` or `@`, found `)`
|
2018-08-22 14:08:29 -05:00
|
|
|
|
|
|
|
fn bar_with_default_impl(String, String) {}
|
2019-05-29 17:25:46 -05:00
|
|
|
//~^ 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
|
|
|
|
}
|
2018-08-22 14:08:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|