]> git.proxmox.com Git - rustc.git/blob - src/test/ui/pub/pub-ident-struct.stderr
New upstream version 1.46.0~beta.2+dfsg1
[rustc.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