blob: 102670c36428e3447f3b77018575005d0a2fb832 [file] [log] [blame]
error[E0261]: use of undeclared lifetime name `'reborrow`
--> $DIR/missing_lifetime.rs:4:15
|
LL | struct Slice(&'reborrow [&'static [u8]]);
| ^^^^^^^^^ undeclared lifetime
|
help: consider introducing lifetime `'reborrow` here
|
LL | struct Slice<'reborrow>(&'reborrow [&'static [u8]]);
| +++++++++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0261`.