2019-03-01 18:28:04 -06:00
|
|
|
error: expected one of `)`, `,`, or `:`, found `>`
|
2019-12-01 00:24:07 -06:00
|
|
|
--> $DIR/issue-58856-1.rs:3:14
|
2019-03-01 18:28:04 -06:00
|
|
|
|
|
2019-03-02 00:35:21 -06:00
|
|
|
LL | fn b(self>
|
2019-04-16 17:26:41 -05:00
|
|
|
| - ^ help: `)` may belong here
|
|
|
|
| |
|
2019-03-01 18:28:04 -06:00
|
|
|
| unclosed delimiter
|
|
|
|
|
2020-10-25 14:13:27 -05:00
|
|
|
error: expected one of `->`, `;`, `where`, or `{`, found `>`
|
2019-12-01 00:24:07 -06:00
|
|
|
--> $DIR/issue-58856-1.rs:3:14
|
|
|
|
|
|
2020-02-22 01:16:39 -06:00
|
|
|
LL | impl A {
|
|
|
|
| - while parsing this item list starting here
|
|
|
|
LL |
|
2019-12-01 00:24:07 -06:00
|
|
|
LL | fn b(self>
|
2020-10-25 14:13:27 -05:00
|
|
|
| ^ expected one of `->`, `;`, `where`, or `{`
|
2020-02-22 01:16:39 -06:00
|
|
|
...
|
|
|
|
LL | }
|
|
|
|
| - the item list ends here
|
2019-12-01 00:24:07 -06:00
|
|
|
|
|
|
|
error[E0412]: cannot find type `A` in this scope
|
|
|
|
--> $DIR/issue-58856-1.rs:1:6
|
|
|
|
|
|
|
|
|
LL | impl A {
|
|
|
|
| ^ not found in this scope
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2019-03-01 18:28:04 -06:00
|
|
|
|
2019-12-01 00:24:07 -06:00
|
|
|
For more information about this error, try `rustc --explain E0412`.
|