rust/src/test/ui/anon-params-denied-2018.stderr

23 lines
795 B
Plaintext
Raw Normal View History

error: expected one of `:` or `@`, found `)`
2018-08-24 20:47:25 +00:00
--> $DIR/anon-params-denied-2018.rs:6:15
|
2019-03-09 12:03:44 +00:00
LL | fn foo(i32);
| ---^ expected one of `:` or `@` here
| |
| help: explicitly ignore parameter: `_: i32`
|
= note: anonymous parameters are removed in the 2018 edition (see RFC 1685)
error: expected one of `:` or `@`, found `,`
2018-08-24 20:47:25 +00:00
--> $DIR/anon-params-denied-2018.rs:8:36
|
LL | fn bar_with_default_impl(String, String) {}
| ------^ expected one of `:` or `@` here
| |
| help: explicitly ignore parameter: `_: String`
|
= note: anonymous parameters are removed in the 2018 edition (see RFC 1685)
error: aborting due to 2 previous errors