rust/tests/ui/issues/issue-40000.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
699 B
Plaintext
Raw Normal View History

error[E0308]: mismatched types
2022-04-01 17:13:25 +00:00
--> $DIR/issue-40000.rs:6:9
|
LL | foo(bar);
| ^^^ 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)`
found trait object `dyn Fn(&i32)`
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);
| ^^^ 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)`
found trait object `dyn Fn(&i32)`
2023-10-04 18:34:50 +00:00
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
2020-12-17 01:15:57 +00:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.