rust/tests/ui/traits/issue-59029-2.rs
2024-02-16 20:02:50 +00:00

9 lines
168 B
Rust

//@ check-pass
#![feature(trait_alias)]
trait Svc<Req> { type Res; }
trait MkSvc<Target, Req> = Svc<Target> where <Self as Svc<Target>>::Res: Svc<Req>;
fn main() {}