blob: 2bdb128d8c4c8af18121625ee55867223e3f2af5 [file] [log] [blame]
// run-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() {}