mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-25 13:16:40 +00:00
26 lines
642 B
Plaintext
26 lines
642 B
Plaintext
error[E0261]: use of undeclared lifetime name `'a`
|
|
--> $DIR/regions-in-structs.rs:10:9
|
|
|
|
|
LL | a: &'a isize,
|
|
| ^^ undeclared lifetime
|
|
|
|
|
help: consider introducing lifetime `'a` here
|
|
|
|
|
LL | struct StructDecl<'a> {
|
|
| ++++
|
|
|
|
error[E0261]: use of undeclared lifetime name `'a`
|
|
--> $DIR/regions-in-structs.rs:11:9
|
|
|
|
|
LL | b: &'a isize,
|
|
| ^^ undeclared lifetime
|
|
|
|
|
help: consider introducing lifetime `'a` here
|
|
|
|
|
LL | struct StructDecl<'a> {
|
|
| ++++
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0261`.
|