rust-clippy/tests/ui/zero_offset.rs
2019-11-15 22:39:27 +01:00

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);
}
}