blob: 7a43813fa6d38783004bf102cd8d2e20b29dfc37 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0018]: raw pointers cannot be cast to integers in statics
--> $DIR/issue-17458.rs:11:19
|
LL | static X: usize = 0 as *const usize as usize;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0018`.
|