blob: e51dd57f9c7071d756cc8542fe26718ba955c318 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error: expected one of `:`, `@`, or `|`, found `<`
--> $DIR/pat-lt-bracket-2.rs:1:7
|
LL | fn a(B<) {}
| ^ expected one of `:`, `@`, or `|`
|
= note: anonymous parameters are removed in the 2018 edition (see RFC 1685)
help: if this is a type, explicitly ignore the parameter name
|
LL | fn a(_: B<) {}
| ^^^^
error: aborting due to previous error
|