2024-01-11 13:02:50 +01:00
|
|
|
error: implementation of `FnOnce` is not general enough
|
2022-04-01 13:13:25 -04:00
|
|
|
--> $DIR/issue-79187.rs:5:5
|
2020-12-01 00:10:13 -08:00
|
|
|
|
|
|
|
|
|
LL | thing(f);
|
2024-01-11 13:02:50 +01:00
|
|
|
| ^^^^^^^^ implementation of `FnOnce` is not general enough
|
2023-03-12 21:10:11 -04:00
|
|
|
|
|
2024-01-11 13:02:50 +01:00
|
|
|
= note: closure with signature `fn(&'2 u32)` must implement `FnOnce<(&'1 u32,)>`, for any lifetime `'1`...
|
|
|
|
|
= note: ...but it actually implements `FnOnce<(&'2 u32,)>`, for some specific lifetime `'2`
|
2020-12-01 00:10:13 -08:00
|
|
|
|
2021-06-07 20:25:19 +01:00
|
|
|
error: implementation of `FnOnce` is not general enough
|
2022-04-01 13:13:25 -04:00
|
|
|
--> $DIR/issue-79187.rs:5:5
|
2020-12-01 00:10:13 -08:00
|
|
|
|
|
|
|
|
|
LL | thing(f);
|
2021-06-07 20:25:19 +01:00
|
|
|
| ^^^^^^^^ implementation of `FnOnce` is not general enough
|
|
|
|
|
|
|
|
|
|
|
= note: closure with signature `fn(&'2 u32)` must implement `FnOnce<(&'1 u32,)>`, for any lifetime `'1`...
|
|
|
|
|
= note: ...but it actually implements `FnOnce<(&'2 u32,)>`, for some specific lifetime `'2`
|
2024-01-11 13:02:50 +01:00
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
2020-12-01 00:10:13 -08:00
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|