2018-10-11 15:51:44 -04:00
|
|
|
error[E0106]: missing lifetime specifier
|
|
|
|
--> $DIR/in-struct.rs:16:9
|
|
|
|
|
|
2018-10-19 16:43:46 -04:00
|
|
|
LL | x: &'_ u32, //~ ERROR missing lifetime specifier
|
2018-10-11 15:51:44 -04:00
|
|
|
| ^^ expected lifetime parameter
|
|
|
|
|
2018-10-19 16:39:41 -04:00
|
|
|
error[E0106]: missing lifetime specifier
|
|
|
|
--> $DIR/in-struct.rs:20:14
|
|
|
|
|
|
2018-10-19 16:43:46 -04:00
|
|
|
LL | Variant(&'_ u32), //~ ERROR missing lifetime specifier
|
2018-10-19 16:39:41 -04:00
|
|
|
| ^^ expected lifetime parameter
|
|
|
|
|
2018-10-11 15:51:44 -04:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0106`.
|