rust/src/test/ui/issues/issue-40000.nll.stderr

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

22 lines
622 B
Plaintext
Raw Normal View History

error[E0308]: mismatched types
2022-05-22 00:02:55 -05:00
--> $DIR/issue-40000.rs:10:9
|
LL | foo(bar);
| ^^^ one type is more general than the other
|
= note: expected trait object `dyn for<'r> Fn(&'r i32)`
found trait object `dyn Fn(&i32)`
error[E0308]: mismatched types
2022-05-22 00:02:55 -05:00
--> $DIR/issue-40000.rs:10:9
2020-12-16 19:15:57 -06:00
|
LL | foo(bar);
| ^^^ one type is more general than the other
|
= note: expected trait object `dyn for<'r> Fn(&'r i32)`
found trait object `dyn Fn(&i32)`
2020-12-16 19:15:57 -06:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.