summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/in-trait/return-not-existing-pair.rs
blob: d1b3832d12b56a3f224e435ed42e4c3cf827f7a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// edition:2021
// [next] compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
// revisions: current next

#![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() {}