2022-07-28 15:18:32 -05:00
error[E0106]: missing lifetime specifier
2023-10-31 08:45:26 -05:00
--> $DIR/impl-fn-hrtb-bounds.rs:22:38
2022-07-28 15:18:32 -05:00
|
LL | fn d() -> impl Fn() -> (impl Debug + '_) {
| ^^ expected named lifetime parameter
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
2023-11-14 14:36:49 -06:00
help: consider using the `'static` lifetime, but this is uncommon unless you're returning a borrowed value from a `const` or a `static`, or if you will only have owned values
2022-07-28 15:18:32 -05:00
|
LL | fn d() -> impl Fn() -> (impl Debug + 'static) {
| ~~~~~~~
2024-03-07 09:44:07 -06:00
error[E0657]: `impl Trait` cannot capture higher-ranked lifetime from outer `impl Trait`
2022-07-28 15:18:32 -05:00
--> $DIR/impl-fn-hrtb-bounds.rs:4:41
2022-06-23 10:00:03 -05:00
|
LL | fn a() -> impl Fn(&u8) -> (impl Debug + '_) {
| ^^
|
note: lifetime declared here
2022-07-28 15:18:32 -05:00
--> $DIR/impl-fn-hrtb-bounds.rs:4:19
2022-06-23 10:00:03 -05:00
|
LL | fn a() -> impl Fn(&u8) -> (impl Debug + '_) {
| ^
2024-02-23 05:45:44 -06:00
error: lifetime may not live long enough
--> $DIR/impl-fn-hrtb-bounds.rs:6:9
|
LL | |x| x
| -- ^ returning this value requires that `'1` must outlive `'2`
| ||
| |return type of closure is impl Debug + '2
| has type `&'1 u8`
2024-03-07 09:44:07 -06:00
error[E0657]: `impl Trait` cannot capture higher-ranked lifetime from outer `impl Trait`
2023-10-31 08:45:26 -05:00
--> $DIR/impl-fn-hrtb-bounds.rs:10:52
2022-06-23 10:00:03 -05:00
|
LL | fn b() -> impl for<'a> Fn(&'a u8) -> (impl Debug + 'a) {
| ^^
|
note: lifetime declared here
2023-10-31 08:45:26 -05:00
--> $DIR/impl-fn-hrtb-bounds.rs:10:20
2022-06-23 10:00:03 -05:00
|
LL | fn b() -> impl for<'a> Fn(&'a u8) -> (impl Debug + 'a) {
| ^^
2024-02-23 05:45:44 -06:00
error: lifetime may not live long enough
--> $DIR/impl-fn-hrtb-bounds.rs:12:9
|
LL | |x| x
| -- ^ returning this value requires that `'1` must outlive `'2`
| ||
| |return type of closure is impl Debug + '2
| has type `&'1 u8`
2024-03-07 09:44:07 -06:00
error[E0657]: `impl Trait` cannot capture higher-ranked lifetime from outer `impl Trait`
2023-10-31 08:45:26 -05:00
--> $DIR/impl-fn-hrtb-bounds.rs:16:52
2022-06-23 10:12:13 -05:00
|
LL | fn c() -> impl for<'a> Fn(&'a u8) -> (impl Debug + '_) {
| ^^
|
note: lifetime declared here
2023-10-31 08:45:26 -05:00
--> $DIR/impl-fn-hrtb-bounds.rs:16:20
2022-06-23 10:12:13 -05:00
|
LL | fn c() -> impl for<'a> Fn(&'a u8) -> (impl Debug + '_) {
| ^^
2023-10-31 08:45:26 -05:00
error: lifetime may not live long enough
--> $DIR/impl-fn-hrtb-bounds.rs:18:9
|
LL | |x| x
| -- ^ returning this value requires that `'1` must outlive `'2`
| ||
| |return type of closure is impl Debug + '2
| has type `&'1 u8`
error: aborting due to 7 previous errors
2022-06-23 10:00:03 -05:00
2024-03-07 09:44:07 -06:00
Some errors have detailed explanations: E0106, E0657.
For more information about an error, try `rustc --explain E0106`.