]> git.lizzy.rs Git - rust.git/blob - src/test/ui/pub/pub-ident-struct.stderr
Rollup merge of #97317 - GuillaumeGomez:gui-settings-text-click, r=jsha
[rust.git] / src / test / 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