summaryrefslogtreecommitdiffstats
path: root/tests/ui/self/elision/struct.rs
blob: d1ac99d13be7fa039fc6f0a0a4be9ce527427c69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// check-pass

#![allow(non_snake_case)]

use std::rc::Rc;

struct Struct { }

impl Struct {
    fn ref_Struct(self: Struct, f: &u32) -> &u32 {
        f
    }

    fn box_Struct(self: Box<Struct>, f: &u32) -> &u32 {
        f
    }

    fn rc_Struct(self: Rc<Struct>, f: &u32) -> &u32 {
        f
    }

    fn box_box_Struct(self: Box<Box<Struct>>, f: &u32) -> &u32 {
        f
    }

    fn box_rc_Struct(self: Box<Rc<Struct>>, f: &u32) -> &u32 {
        f
    }
}

fn main() { }