about summary refs log tree commit diff
path: root/tests/ui/async-await/issues/issue-78600.rs
blob: 1326546e930fe8e3415b559e78dae4227da1f862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ check-pass
//@ edition:2018

struct S<'a>(&'a i32);

impl<'a> S<'a> {
    async fn new(i: &'a i32) -> Result<Self, ()> {
        Ok(S(&22))
    }
}

fn main() {}