blob: e98a4d0e491a3a1a9c9664db3889937de2c21cfd [file] [log] [blame]
#![feature(trait_alias)]
trait Svc<Req> { type Res; }
trait MkSvc<Target, Req> = Svc<Target> where Self::Res: Svc<Req>;
//~^ ERROR associated type `Res` not found for `Self`
fn main() {}