2017-11-14 19:49:29 -06:00
|
|
|
error: missing `struct` for struct definition
|
2020-07-02 00:32:12 -05:00
|
|
|
--> $DIR/pub-ident-struct.rs:3:4
|
2017-11-14 19:49:29 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | pub S {
|
2017-11-14 19:49:29 -06:00
|
|
|
| ^
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2017-11-14 19:49:29 -06:00
|
|
|
help: add `struct` here to parse `S` as a public struct
|
|
|
|
|
|
2018-02-24 17:01:39 -06:00
|
|
|
LL | pub struct S {
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++++++
|
2017-11-14 19:49:29 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2017-11-14 19:49:29 -06:00
|
|
|
|