rust/tests/ui/const-generics/generic_const_exprs/unresolved_lifetimes_error....

12 lines
367 B
Plaintext

error[E0261]: use of undeclared lifetime name `'a`
--> $DIR/unresolved_lifetimes_error.rs:5:13
|
LL | fn foo() -> [(); {
| - help: consider introducing lifetime `'a` here: `<'a>`
LL | let a: &'a ();
| ^^ undeclared lifetime
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0261`.