2024-12-13 12:32:35 +01:00
|
|
|
fn mainIterator<_ = _> {}
|
|
|
|
|
//~^ ERROR expected identifier, found reserved identifier `_`
|
|
|
|
|
//~| ERROR missing parameters for function definition
|
2025-08-06 01:26:26 +02:00
|
|
|
//~| ERROR defaults for generic parameters are not allowed here [invalid_type_param_default]
|
2024-12-13 12:32:35 +01:00
|
|
|
//~| WARNING this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
|
//~| ERROR the placeholder `_` is not allowed within types on item signatures for functions [E0121]
|
|
|
|
|
|
|
|
|
|
fn main() {}
|