2019-03-01 18:28:04 -06:00
|
|
|
error: expected one of `)` or `,`, found `->`
|
2019-03-01 23:47:06 -06:00
|
|
|
--> $DIR/issue-58856-2.rs:6:26
|
2019-03-01 18:28:04 -06:00
|
|
|
|
|
|
|
|
LL | fn how_are_you(&self -> Empty {
|
|
|
|
| - -^^
|
|
|
|
| | |
|
|
|
|
| | help: `)` may belong here
|
|
|
|
| unclosed delimiter
|
|
|
|
|
2020-02-14 18:50:26 -06:00
|
|
|
error: expected one of `async`, `const`, `crate`, `default`, `extern`, `fn`, `pub`, `static`, `type`, `unsafe`, `}`, or identifier, found `)`
|
2019-03-01 23:47:06 -06:00
|
|
|
--> $DIR/issue-58856-2.rs:11:1
|
2019-03-01 18:28:04 -06:00
|
|
|
|
|
|
|
|
LL | }
|
2020-02-14 18:50:26 -06:00
|
|
|
| - expected one of 12 possible tokens
|
2019-03-01 18:28:04 -06:00
|
|
|
LL | }
|
|
|
|
| ^ unexpected token
|
|
|
|
|
|
|
|
error[E0407]: method `how_are_you` is not a member of trait `Howness`
|
2019-03-01 23:47:06 -06:00
|
|
|
--> $DIR/issue-58856-2.rs:6:5
|
2019-03-01 18:28:04 -06:00
|
|
|
|
|
|
|
|
LL | / fn how_are_you(&self -> Empty {
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | |
|
|
|
|
LL | |
|
2019-03-01 18:28:04 -06:00
|
|
|
LL | | Empty
|
|
|
|
LL | | }
|
|
|
|
| |_____^ not a member of trait `Howness`
|
|
|
|
|
2019-03-01 23:47:06 -06:00
|
|
|
error: aborting due to 3 previous errors
|
2019-03-01 18:28:04 -06:00
|
|
|
|
2019-03-01 23:47:06 -06:00
|
|
|
For more information about this error, try `rustc --explain E0407`.
|