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