mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
12 lines
215 B
Rust
12 lines
215 B
Rust
fn main() {
|
|
unsafe {
|
|
let x = &() as *const ();
|
|
x.offset(0);
|
|
x.wrapping_add(0);
|
|
x.sub(0);
|
|
x.wrapping_sub(0);
|
|
|
|
let y = &1 as *const u8;
|
|
y.offset(0);
|
|
}
|
|
}
|