]> git.lizzy.rs Git - rust.git/blob - tests/ui/dyn-star/unsize-into-ref-dyn-star.stderr
Rollup merge of #104965 - zacklukem:p-option-as_ref-docs, r=scottmcm
[rust.git] / tests / ui / dyn-star / unsize-into-ref-dyn-star.stderr
1 error[E0605]: non-primitive cast: `i32` as `&dyn* Debug`
2   --> $DIR/unsize-into-ref-dyn-star.rs:7:13
3    |
4 LL |     let i = 42 as &dyn* Debug;
5    |             ^^^^^^^^^^^^^^^^^ an `as` expression can only be used to convert between primitive types or to coerce to a specific trait object
6
7 error: aborting due to previous error
8
9 For more information about this error, try `rustc --explain E0605`.