about summary refs log tree commit diff
path: root/src/test/ui/self/elision/struct-async.rs
blob: 4a38a2164c82a6181fe23fb375aae60b9328b88f (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
32
33
// check-pass
// edition:2018

#![feature(arbitrary_self_types)]
#![allow(non_snake_case)]

use std::rc::Rc;

struct Struct { }

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

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

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

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

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

fn main() { }