]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-40000.nll.stderr
Rollup merge of #92942 - Xaeroxe:raw_arg, r=dtolnay
[rust.git] / src / test / ui / issues / issue-40000.nll.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-40000.rs:6:9
3    |
4 LL |     foo(bar);
5    |         ^^^ one type is more general than the other
6    |
7    = note: expected trait object `dyn for<'r> Fn(&'r i32)`
8               found trait object `dyn Fn(&i32)`
9
10 error[E0308]: mismatched types
11   --> $DIR/issue-40000.rs:6:9
12    |
13 LL |     foo(bar);
14    |         ^^^ one type is more general than the other
15    |
16    = note: expected trait object `dyn for<'r> Fn(&'r i32)`
17               found trait object `dyn Fn(&i32)`
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0308`.