2018-08-08 07:28:26 -05:00
|
|
|
error[E0261]: use of undeclared lifetime name `'a`
|
2020-09-01 16:12:52 -05:00
|
|
|
--> $DIR/generic-extern-lifetime.rs:6:26
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-09-01 16:12:52 -05:00
|
|
|
LL | pub fn life2<'b>(x: &'a i32, y: &'b i32);
|
2022-03-06 08:44:48 -06:00
|
|
|
| - ^^ undeclared lifetime
|
|
|
|
| |
|
|
|
|
| help: consider introducing lifetime `'a` here: `'a,`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0261]: use of undeclared lifetime name `'a`
|
2020-09-01 16:12:52 -05:00
|
|
|
--> $DIR/generic-extern-lifetime.rs:8:37
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-09-01 16:12:52 -05:00
|
|
|
LL | pub fn life4<'b>(x: for<'c> fn(&'a i32));
|
|
|
|
| ^^ undeclared lifetime
|
2020-01-27 18:13:45 -06:00
|
|
|
|
|
2020-01-27 18:25:43 -06:00
|
|
|
= note: for more information on higher-ranked polymorphism, visit https://doc.rust-lang.org/nomicon/hrtb.html
|
2020-01-27 18:13:45 -06:00
|
|
|
help: consider making the type lifetime-generic with a new `'a` lifetime
|
|
|
|
|
|
2022-03-06 08:44:48 -06:00
|
|
|
LL | pub fn life4<'b>(x: for<'a, 'c> fn(&'a i32));
|
|
|
|
| +++
|
|
|
|
help: consider introducing lifetime `'a` here
|
|
|
|
|
|
|
|
|
LL | pub fn life4<'a, 'b>(x: for<'c> fn(&'a i32));
|
|
|
|
| +++
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0261]: use of undeclared lifetime name `'a`
|
2020-09-01 16:12:52 -05:00
|
|
|
--> $DIR/generic-extern-lifetime.rs:11:39
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-09-01 16:12:52 -05:00
|
|
|
LL | pub fn life7<'b>() -> for<'c> fn(&'a i32);
|
|
|
|
| ^^ undeclared lifetime
|
2020-01-27 18:13:45 -06:00
|
|
|
|
|
|
|
|
help: consider making the type lifetime-generic with a new `'a` lifetime
|
|
|
|
|
|
2022-03-06 08:44:48 -06:00
|
|
|
LL | pub fn life7<'b>() -> for<'a, 'c> fn(&'a i32);
|
|
|
|
| +++
|
|
|
|
help: consider introducing lifetime `'a` here
|
|
|
|
|
|
|
|
|
LL | pub fn life7<'a, 'b>() -> for<'c> fn(&'a i32);
|
|
|
|
| +++
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0261`.
|