2021-06-07 14:25:19 -05:00
|
|
|
error[E0308]: mismatched types
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/issue-40000.rs:6:9
|
2020-06-08 18:12:01 -05:00
|
|
|
|
|
|
|
|
LL | foo(bar);
|
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 object `dyn for<'a> Fn(&'a i32)`
|
2021-06-07 14:25:19 -05:00
|
|
|
found trait object `dyn Fn(&i32)`
|
2020-06-08 18:12:01 -05:00
|
|
|
|
2021-06-07 14:25:19 -05:00
|
|
|
error[E0308]: mismatched types
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/issue-40000.rs:6:9
|
2020-12-16 19:15:57 -06:00
|
|
|
|
|
|
|
|
LL | foo(bar);
|
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 object `dyn for<'a> Fn(&'a i32)`
|
2021-06-07 14:25:19 -05:00
|
|
|
found trait object `dyn Fn(&i32)`
|
2020-12-16 19:15:57 -06:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2020-06-08 18:12:01 -05:00
|
|
|
|
2021-06-07 14:25:19 -05:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|