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
|
|
|
|
|
2019-12-01 00:24:07 -06:00
|
|
|
error: expected `;` or `{`, found `>`
|
|
|
|
--> $DIR/issue-58856-1.rs:3:14
|
|
|
|
|
|
|
|
|
LL | fn b(self>
|
|
|
|
| ^ expected `;` or `{`
|
|
|
|
|
|
|
|
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`.
|