blob: dea7f1054183e71c45264a2ae2d33ce7c9346f48 [file] [log] [blame]
error[E0261]: use of undeclared lifetime name `'a`
--> $DIR/regions-in-structs.rs:10:9
|
LL | a: &'a isize, //~ ERROR use of undeclared lifetime name `'a`
| ^^ undeclared lifetime
error[E0261]: use of undeclared lifetime name `'a`
--> $DIR/regions-in-structs.rs:11:9
|
LL | b: &'a isize, //~ ERROR use of undeclared lifetime name `'a`
| ^^ undeclared lifetime
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0261`.