mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
9 lines
274 B
Text
9 lines
274 B
Text
error[E0606]: casting `&i32` as `*const u8` is invalid
|
|
--> $DIR/zero_offset.rs:9:17
|
|
|
|
|
LL | let y = &1 as *const u8;
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0606`.
|