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