trait A { type B; } type MaybeBox = >>::B; struct P { t: MaybeBox

, //~ ERROR: overflow evaluating the requirement `P: Sized` } impl A for P { type B = N; } fn main() { let t: MaybeBox

; }