2021-06-04 12:48:24 -05:00
|
|
|
error: expected parameter name, found `?`
|
|
|
|
--> $DIR/issue-84148-1.rs:1:14
|
|
|
|
|
|
|
|
|
LL | fn f(t:for<>t?)
|
|
|
|
| ^ expected parameter name
|
|
|
|
|
|
|
|
error: expected one of `(`, `)`, `+`, `,`, `::`, or `<`, found `?`
|
|
|
|
--> $DIR/issue-84148-1.rs:1:14
|
|
|
|
|
|
|
|
|
LL | fn f(t:for<>t?)
|
|
|
|
| ^
|
|
|
|
| |
|
|
|
|
| expected one of `(`, `)`, `+`, `,`, `::`, or `<`
|
|
|
|
| help: missing `,`
|
|
|
|
|
2021-12-04 12:05:30 -06:00
|
|
|
error: expected one of `->`, `where`, or `{`, found `<eof>`
|
2021-06-04 12:48:24 -05:00
|
|
|
--> $DIR/issue-84148-1.rs:1:15
|
|
|
|
|
|
|
|
|
LL | fn f(t:for<>t?)
|
2021-12-04 12:05:30 -06:00
|
|
|
| ^ expected one of `->`, `where`, or `{`
|
2021-06-04 12:48:24 -05:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|