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

21 lines
601 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-23 03:42:32 +03:00
LL | pub
| - expected one of 7 possible tokens here
2018-02-23 03:42:32 +03: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-23 03:42:32 +03:00
LL | impl S { //~ ERROR cannot find type
| ^ not found in this scope
2017-05-29 18:46:29 +02:00
error[E0601]: main function not found
error: aborting due to 3 previous errors
2018-03-03 15:59:40 +01:00
Some errors occurred: E0412, E0601.
For more information about an error, try `rustc --explain E0412`.