2022-05-01 19:05:35 +02:00
|
|
|
error: expected one of `!`, `(`, `+`, `,`, `::`, `<`, or `>`, found `)`
|
2019-07-13 19:34:06 -05:00
|
|
|
--> $DIR/issue-62660.rs:7:38
|
|
|
|
|
|
|
|
|
|
|
LL | pub fn foo(_: i32, self: Box<Self) {}
|
2022-05-01 19:05:35 +02:00
|
|
|
| ^ expected one of 7 possible tokens
|
2022-03-01 19:40:48 +00:00
|
|
|
|
|
|
|
|
|
help: you might have meant to end the type parameters here
|
|
|
|
|
|
|
|
|
|
|
LL | pub fn foo(_: i32, self: Box<Self>) {}
|
|
|
|
|
| +
|
2019-07-13 19:34:06 -05:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-07-13 19:34:06 -05:00
|
|
|
|