2017-11-03 02:58:01 -05:00
|
|
|
error[E0641]: cannot cast to a pointer of an unknown kind
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-45730.rs:3:23
|
2017-11-03 02:58:01 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let x: *const _ = 0 as _; //~ ERROR cannot cast
|
2017-11-03 02:58:01 -05:00
|
|
|
| ^^^^^-
|
|
|
|
| |
|
|
|
|
| help: consider giving more type information
|
|
|
|
|
|
|
|
|
= note: The type information given here is insufficient to check whether the pointer cast is valid
|
|
|
|
|
|
|
|
error[E0641]: cannot cast to a pointer of an unknown kind
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-45730.rs:5:23
|
2017-11-03 02:58:01 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let x: *const _ = 0 as *const _; //~ ERROR cannot cast
|
2017-11-03 02:58:01 -05:00
|
|
|
| ^^^^^--------
|
|
|
|
| |
|
|
|
|
| help: consider giving more type information
|
|
|
|
|
|
|
|
|
= note: The type information given here is insufficient to check whether the pointer cast is valid
|
|
|
|
|
|
|
|
error[E0641]: cannot cast to a pointer of an unknown kind
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-45730.rs:8:13
|
2017-11-03 02:58:01 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let x = 0 as *const i32 as *const _ as *mut _; //~ ERROR cannot cast
|
2017-11-03 02:58:01 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^------
|
|
|
|
| |
|
|
|
|
| help: consider giving more type information
|
|
|
|
|
|
|
|
|
= note: The type information given here is insufficient to check whether the pointer cast is valid
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0641`.
|