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