]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-11515.stderr
Merge commit '0cce3f643bfcbb92d5a1bb71858c9cbaff749d6b' into clippyup
[rust.git] / src / test / ui / issues / issue-11515.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-11515.rs:9:33
3    |
4 LL |     let test = box Test { func: closure };
5    |                                 ^^^^^^^ expected trait `FnMut`, found trait `Fn`
6    |
7    = note: expected struct `Box<(dyn FnMut() + 'static)>`
8               found struct `Box<(dyn Fn() + 'static)>`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0308`.