2021-06-07 19:25:19 +00:00
|
|
|
error[E0308]: mismatched types
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/issue-40000.rs:6:9
|
2020-06-08 23:12:01 +00:00
|
|
|
|
|
|
|
|
LL | foo(bar);
|
2021-06-07 19:25:19 +00:00
|
|
|
| ^^^ one type is more general than the other
|
|
|
|
|
|
2022-09-21 15:57:30 +00:00
|
|
|
= note: expected trait object `dyn for<'a> Fn(&'a i32)`
|
2021-06-07 19:25:19 +00:00
|
|
|
found trait object `dyn Fn(&i32)`
|
2020-06-08 23:12:01 +00:00
|
|
|
|
2021-06-07 19:25:19 +00:00
|
|
|
error[E0308]: mismatched types
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/issue-40000.rs:6:9
|
2020-12-17 01:15:57 +00:00
|
|
|
|
|
|
|
|
LL | foo(bar);
|
2021-06-07 19:25:19 +00:00
|
|
|
| ^^^ one type is more general than the other
|
|
|
|
|
|
2022-09-21 15:57:30 +00:00
|
|
|
= note: expected trait object `dyn for<'a> Fn(&'a i32)`
|
2021-06-07 19:25:19 +00:00
|
|
|
found trait object `dyn Fn(&i32)`
|
2020-12-17 01:15:57 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2020-06-08 23:12:01 +00:00
|
|
|
|
2021-06-07 19:25:19 +00:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|