]> git.lizzy.rs Git - rust.git/blob - src/test/ui/token/issue-41155.stderr
Remove the parse-fail test suite
[rust.git] / src / test / ui / token / issue-41155.stderr
1 error: expected one of `(`, `async`, `const`, `default`, `existential`, `extern`, `fn`, `type`, or `unsafe`, found `}`
2   --> $DIR/issue-41155.rs:13:1
3    |
4 LL |     pub
5    |        - expected one of 9 possible tokens here
6 LL | } //~ ERROR expected one of
7    | ^ unexpected token
8
9 error[E0412]: cannot find type `S` in this scope
10   --> $DIR/issue-41155.rs:11:6
11    |
12 LL | impl S { //~ ERROR cannot find type
13    |      ^ not found in this scope
14
15 error: aborting due to 2 previous errors
16
17 For more information about this error, try `rustc --explain E0412`.