blob: 560fbc73bbdc81547da9e1b28fb7efd5d39ce55b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0605]: non-primitive cast: `i32` as `&(dyn Any + 'static)`
--> $DIR/issue-22289.rs:2:5
|
LL | 0 as &dyn std::any::Any;
| ^^^^^^^^^^^^^^^^^^^^^^^ invalid cast
|
help: consider borrowing the value
|
LL | &0 as &dyn std::any::Any;
| +
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0605`.
|