rust-clippy/tests/ui/zero_offset.rs

20 lines
386 B
Rust
Raw Normal View History

#[allow(clippy::borrow_as_ptr)]
2019-11-14 19:18:24 +00:00
fn main() {
unsafe {
let m = &mut () as *mut ();
m.offset(0);
m.wrapping_add(0);
m.sub(0);
m.wrapping_sub(0);
2019-11-14 19:18:24 +00:00
let c = &() as *const ();
c.offset(0);
c.wrapping_add(0);
c.sub(0);
c.wrapping_sub(0);
2021-06-23 02:02:34 +00:00
let sized = &1 as *const i32;
sized.offset(0);
2019-11-14 19:18:24 +00:00
}
}