]> git.proxmox.com Git - rustc.git/blame_incremental - src/test/ui/issues/issue-11515.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / issues / issue-11515.stderr
... / ...
CommitLineData
1error[E0308]: mismatched types
2 --> $DIR/issue-11515.rs:9:33
3 |
4LL | let test = box Test { func: closure };
5 | ^^^^^^^ expected trait `std::ops::FnMut`, found trait `std::ops::Fn`
6 |
7 = note: expected struct `std::boxed::Box<(dyn std::ops::FnMut() + 'static)>`
8 found struct `std::boxed::Box<(dyn std::ops::Fn() + 'static)>`
9
10error: aborting due to previous error
11
12For more information about this error, try `rustc --explain E0308`.