rust/tests/ui/async-await/in-trait/async-generics-and-bounds.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
300 B
Rust
Raw Normal View History

2022-10-07 11:08:56 -05:00
// 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() {}