blob: 4c35deb1fbe4e0b566c14fc9026d09f5883cfff3 [file] [log] [blame]
error[E0605]: non-primitive cast: `i32` as `&(dyn std::any::Any + 'static)`
--> $DIR/issue-22289.rs:2:5
|
LL | 0 as &dyn std::any::Any;
| ^^^^^^^^^^^^^^^^^^^^^^^ invalid cast
|
help: borrow the value for the cast to be valid
|
LL | &0 as &dyn std::any::Any;
| ^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0605`.