]>
Commit | Line | Data |
---|---|---|
04454e1e FG |
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`. |