2022-10-06 11:35:53 -05:00
|
|
|
error: missing `struct` for struct definition
|
|
|
|
--> $DIR/pub-ident-struct-4.rs:3:4
|
|
|
|
|
|
2023-12-27 16:11:58 -06:00
|
|
|
LL | pub T(#[allow(dead_code)] String);
|
2022-10-06 11:35:53 -05:00
|
|
|
| ^
|
|
|
|
|
|
|
|
|
help: add `struct` here to parse `T` as a public struct
|
|
|
|
|
|
2023-12-27 16:11:58 -06:00
|
|
|
LL | pub struct T(#[allow(dead_code)] String);
|
2022-10-06 11:35:53 -05:00
|
|
|
| ++++++
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-10-06 11:35:53 -05:00
|
|
|
|