summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/zero_offset.rs
blob: fd9ac1fa7663b897333d1453e604e44a3143d1e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#[allow(clippy::borrow_as_ptr)]
fn main() {
    unsafe {
        let m = &mut () as *mut ();
        m.offset(0);
        m.wrapping_add(0);
        m.sub(0);
        m.wrapping_sub(0);

        let c = &() as *const ();
        c.offset(0);
        c.wrapping_add(0);
        c.sub(0);
        c.wrapping_sub(0);

        let sized = &1 as *const i32;
        sized.offset(0);
    }
}