12 lines
409 B
Plaintext
12 lines
409 B
Plaintext
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: `<'reborrow>`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0261`.
|