]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/pub-ident-struct.stderr
Auto merge of #52404 - felixrabe:doc-link-ch19-04-typo, r=GuillaumeGomez
[rust.git] / src / test / ui / suggestions / pub-ident-struct.stderr
1 error: missing `struct` for struct definition
2   --> $DIR/pub-ident-struct.rs:11:4
3    |
4 LL | pub S {
5    |    ^
6 help: add `struct` here to parse `S` as a public struct
7    |
8 LL | pub struct S {
9    |     ^^^^^^
10
11 error: aborting due to previous error
12