summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/in-trait/return-not-existing-pair.rs
blob: a14dfceed750e3cf24f96cb2aba5a52a58ab3dc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// edition:2021

#![feature(async_fn_in_trait)]

trait MyTrait<'a, 'b, T> {
    async fn foo(&'a self, key: &'b T) -> (&'a ConnImpl, &'b T);
    //~^ ERROR: cannot find type `ConnImpl` in this scope [E0412]
}

impl<'a, 'b, T, U> MyTrait<T> for U {
    //~^ ERROR: implicit elided lifetime not allowed here [E0726]
    async fn foo(_: T) -> (&'a U, &'b T) {}
    //~^ ERROR: method `foo` has a `&self` declaration in the trait, but not in the impl [E0186]
    //~| ERROR: mismatched types [E0308]
}

fn main() {}