// check-pass #![feature(associated_type_bounds)] trait Trait: Super {} trait Super { type Assoc; } trait Bound {} fn foo(x: T) where T: Trait, { } fn main() {}