2021-06-07 19:25:19 +00:00
|
|
|
error[E0308]: mismatched types
|
2020-12-01 08:10:13 +00:00
|
|
|
--> $DIR/issue-79187.rs:5:5
|
|
|
|
|
|
|
|
|
LL | thing(f);
|
2021-06-07 19:25:19 +00:00
|
|
|
| ^^^^^^^^ one type is more general than the other
|
|
|
|
|
|
|
|
|
= note: expected type `for<'r> FnOnce<(&'r u32,)>`
|
|
|
|
found type `FnOnce<(&u32,)>`
|
|
|
|
note: this closure does not fulfill the lifetime requirements
|
|
|
|
--> $DIR/issue-79187.rs:4:13
|
|
|
|
|
|
|
|
|
LL | let f = |_| ();
|
|
|
|
| ^^^^^^
|
2020-12-01 08:10:13 +00:00
|
|
|
|
2021-06-07 19:25:19 +00:00
|
|
|
error: implementation of `FnOnce` is not general enough
|
2020-12-01 08:10:13 +00:00
|
|
|
--> $DIR/issue-79187.rs:5:5
|
|
|
|
|
|
|
|
|
LL | thing(f);
|
2021-06-07 19:25:19 +00: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 08:10:13 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2021-06-07 19:25:19 +00:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|