mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
14 lines
273 B
Plaintext
14 lines
273 B
Plaintext
error: missing `struct` for struct definition
|
|
--> $DIR/pub-ident-struct-with-lifetime.rs:1:4
|
|
|
|
|
LL | pub S<'a> {
|
|
| ^
|
|
|
|
|
help: add `struct` here to parse `S` as a public struct
|
|
|
|
|
LL | pub struct S<'a> {
|
|
| ++++++
|
|
|
|
error: aborting due to previous error
|
|
|