2018-08-08 07:28:26 -05:00
|
|
|
error[E0261]: use of undeclared lifetime name `'a`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/regions-in-structs.rs:10:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | a: &'a isize, //~ ERROR use of undeclared lifetime name `'a`
|
|
|
|
| ^^ undeclared lifetime
|
|
|
|
|
|
|
|
error[E0261]: use of undeclared lifetime name `'a`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/regions-in-structs.rs:11:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
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`.
|