]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-40000.nll.stderr
New upstream version 1.62.1+dfsg1
[rustc.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`.