summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/building/receiver_ptr_mutability.rs
blob: 668530968fe51de0067773ae034bd9fc503b3a12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// EMIT_MIR receiver_ptr_mutability.main.built.after.mir

#![feature(arbitrary_self_types)]

struct Test {}

impl Test {
    fn x(self: *const Self) {
        println!("x called");
    }
}

fn main() {
    let ptr: *mut Test = std::ptr::null_mut();
    ptr.x();

    // Test autoderefs
    let ptr_ref: &&&&*mut Test = &&&&ptr;
    ptr_ref.x();
}