rust/src/test/ui/in-band-lifetimes/no_in_band_in_struct.stderr
Guillaume Gomez 2e104a77cf update tests
2018-03-14 00:53:24 +01:00

16 lines
500 B
Plaintext

error[E0261]: use of undeclared lifetime name `'test`
--> $DIR/no_in_band_in_struct.rs:15:9
|
LL | x: &'test u32, //~ ERROR undeclared lifetime
| ^^^^^ undeclared lifetime
error[E0261]: use of undeclared lifetime name `'test`
--> $DIR/no_in_band_in_struct.rs:19:10
|
LL | Baz(&'test u32), //~ ERROR undeclared lifetime
| ^^^^^ undeclared lifetime
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0261`.