2018-05-26 20:51:50 -07:00
|
|
|
error[E0033]: type `&dyn SomeTrait` cannot be dereferenced
|
2022-12-27 17:57:39 -08:00
|
|
|
--> $DIR/E0033.rs:11:9
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let &invalid = trait_obj;
|
2018-05-26 20:51:50 -07:00
|
|
|
| ^^^^^^^^ type `&dyn SomeTrait` cannot be dereferenced
|
2018-02-07 19:35:35 -08:00
|
|
|
|
2022-12-27 17:57:39 -08:00
|
|
|
error: aborting due to previous error
|
2018-02-07 19:35:35 -08:00
|
|
|
|
2022-12-27 17:57:39 -08:00
|
|
|
For more information about this error, try `rustc --explain E0033`.
|