//@ check-pass // https://github.com/rust-lang/rust/issues/102154 trait A { type B; } type MaybeBox = >>::B; struct P { t: MaybeBox

} impl A for P { type B = N; } fn main() { let t: MaybeBox

; }