rust/tests/ui/pub/pub-ident-struct-4.stderr
Nilstrieb 41e8d152dc Show number in error message even for one error
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-11-24 19:15:52 +01:00

14 lines
269 B
Plaintext

error: missing `struct` for struct definition
--> $DIR/pub-ident-struct-4.rs:3:4
|
LL | pub T(String);
| ^
|
help: add `struct` here to parse `T` as a public struct
|
LL | pub struct T(String);
| ++++++
error: aborting due to 1 previous error