rust/src/test/ui/pub/pub-ident-struct.stderr
2018-12-25 21:08:33 -07:00

13 lines
246 B
Plaintext

error: missing `struct` for struct definition
--> $DIR/pub-ident-struct.rs:1:4
|
LL | pub S {
| ^
help: add `struct` here to parse `S` as a public struct
|
LL | pub struct S {
| ^^^^^^
error: aborting due to previous error