rust/src/test/ui/token/issue-41155.stderr

21 lines
613 B
Plaintext
Raw Normal View History

error: expected one of `(`, `const`, `default`, `extern`, `fn`, `type`, or `unsafe`, found `}`
--> $DIR/issue-41155.rs:13:1
|
2018-02-22 18:42:32 -06:00
LL | pub
| - expected one of 7 possible tokens here
2018-02-22 18:42:32 -06:00
LL | } //~ ERROR expected one of
| ^ unexpected token
error[E0412]: cannot find type `S` in this scope
--> $DIR/issue-41155.rs:11:6
|
2018-02-22 18:42:32 -06:00
LL | impl S { //~ ERROR cannot find type
| ^ not found in this scope
2017-05-29 11:46:29 -05:00
error[E0601]: main function not found
error: aborting due to 3 previous errors
2018-02-19 14:40:25 -06:00
You've got a few errors: E0412, E0601
If you want more information on an error, try using "rustc --explain E0412"