summary refs log tree commit diff
path: root/tests/ui/statics/missing_lifetime.stderr
blob: e23b27f7a6a6da3cc9d0586d224d1c2880df92b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
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`.