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