]> git.lizzy.rs Git - rust.git/blob - tests/ui/box/issue-82446.stderr
Rollup merge of #107171 - petrochenkov:encattrs, r=cjgillot
[rust.git] / tests / ui / box / issue-82446.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-82446.rs:11:9
3    |
4 LL |         val
5    |         ^^^ expected struct `Box`, found reference
6    |
7    = note: expected struct `Box<(dyn MyTrait + 'static)>`
8            found reference `&Box<(dyn MyTrait + 'static)>`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0308`.