]> git.lizzy.rs Git - rust.git/blob - tests/ui/pub/pub-ident-struct.stderr
Rollup merge of #106664 - chenyukang:yukang/fix-106597-remove-lseek, r=cuviper
[rust.git] / tests / ui / pub / pub-ident-struct.stderr
1 error: missing `struct` for struct definition
2   --> $DIR/pub-ident-struct.rs:3:4
3    |
4 LL | pub S {
5    |    ^
6    |
7 help: add `struct` here to parse `S` as a public struct
8    |
9 LL | pub struct S {
10    |     ++++++
11
12 error: aborting due to previous error
13