summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/in-trait/async-generics-and-bounds.rs
blob: 8dc0574c757ad878c668cb3cdb1536a3eb22c259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// check-fail
// known-bug: #102682
// edition: 2021

use std::fmt::Debug;
use std::hash::Hash;

trait MyTrait<T, U> {
    async fn foo(&self) -> &(T, U) where T: Debug + Sized, U: Hash;
}

impl<T, U> MyTrait<T, U> for (T, U) {
    async fn foo(&self) -> &(T, U) {
        self
    }
}

fn main() {}