2021-06-07 14:25:19 -05:00
|
|
|
error[E0308]: mismatched types
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/issue-79187.rs:5:5
|
2020-12-01 02:10:13 -06:00
|
|
|
|
|
|
|
|
LL | thing(f);
|
2021-06-07 14:25:19 -05:00
|
|
|
| ^^^^^^^^ one type is more general than the other
|
|
|
|
|
|
2022-09-21 10:57:30 -05:00
|
|
|
= note: expected trait `for<'a> FnOnce<(&'a u32,)>`
|
2022-06-11 18:25:35 -05:00
|
|
|
found trait `FnOnce<(&u32,)>`
|
2021-06-07 14:25:19 -05:00
|
|
|
note: this closure does not fulfill the lifetime requirements
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/issue-79187.rs:4:13
|
2021-06-07 14:25:19 -05:00
|
|
|
|
|
|
|
|
LL | let f = |_| ();
|
2022-06-27 00:45:35 -05:00
|
|
|
| ^^^
|
2021-08-28 18:45:37 -05:00
|
|
|
note: the lifetime requirement is introduced here
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/issue-79187.rs:1:18
|
2021-08-28 18:45:37 -05:00
|
|
|
|
|
|
|
|
LL | fn thing(x: impl FnOnce(&u32)) {}
|
|
|
|
| ^^^^^^^^^^^^
|
2020-12-01 02:10:13 -06:00
|
|
|
|
2021-06-07 14:25:19 -05:00
|
|
|
error: implementation of `FnOnce` is not general enough
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/issue-79187.rs:5:5
|
2020-12-01 02:10:13 -06:00
|
|
|
|
|
|
|
|
LL | thing(f);
|
2021-06-07 14:25:19 -05: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`
|
2020-12-01 02:10:13 -06:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2021-06-07 14:25:19 -05:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|