summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/issues/issue-63388-2.rs
blob: 90b59f96e5f553b46cabce767d07bb0aae4026bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// edition:2018

struct Xyz {
    a: u64,
}

trait Foo {}

impl Xyz {
    async fn do_sth<'a>(
        foo: &dyn Foo, bar: &'a dyn Foo
    ) -> &dyn Foo //~ ERROR missing lifetime specifier
    {
        //~^ ERROR explicit lifetime required in the type of `foo` [E0621]
        foo
    }
}

fn main() {}