Having duplicate relaxed default bounds is unsupported. Erroneous code example: ```compile_fail,E0203 struct Bad{ inner: T, } ``` Here the type parameter `T` cannot have duplicate relaxed bounds for default trait `Sized`. This can be fixed by only using one relaxed bound: ``` struct Good{ inner: T } ```