]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-22289.stderr
Rollup merge of #52813 - newpavlov:duration_mul_div_extras, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-22289.stderr
1 error[E0605]: non-primitive cast: `i32` as `&(dyn std::any::Any + 'static)`
2   --> $DIR/issue-22289.rs:12:5
3    |
4 LL |     0 as &std::any::Any; //~ ERROR non-primitive cast
5    |     ^^^^^^^^^^^^^^^^^^^
6    |
7    = note: an `as` expression can only be used to convert between primitive types. Consider using the `From` trait
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0605`.