2022-04-12 14:14:32 -05:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-82446.rs:11:9
|
|
|
|
|
|
|
|
|
LL | val
|
2023-01-02 20:00:33 -06:00
|
|
|
| ^^^ expected `Box<dyn MyTrait>`, found `&Box<dyn MyTrait>`
|
2022-04-12 14:14:32 -05:00
|
|
|
|
|
2023-12-07 21:54:41 -06:00
|
|
|
= note: expected struct `Box<_>`
|
|
|
|
found reference `&Box<_>`
|
2022-04-12 14:14:32 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-04-12 14:14:32 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|