summary refs log tree commit diff
path: root/src/test/ui/issues/issue-11515.stderr
blob: b53563d7b653c458704f8592dd33962a7bc33b4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0308]: mismatched types
  --> $DIR/issue-11515.rs:9:33
   |
LL |     let test = box Test { func: closure };
   |                                 ^^^^^^^ expected trait `std::ops::FnMut`, found trait `std::ops::Fn`
   |
   = note: expected struct `std::boxed::Box<(dyn std::ops::FnMut() + 'static)>`
              found struct `std::boxed::Box<(dyn std::ops::Fn() + 'static)>`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.