Closed lukas-code closed 1 month ago
After https://github.com/rust-lang/rust/pull/127054, the T: ?Trait and T: for<...> Trait syntax is mutually exclusive, and this code no longer compiles:
T: ?Trait
T: for<...> Trait
fn foo<T: ?for<> Sized>() {}
Update the reference to reflect that.
r? @compiler-errors
After https://github.com/rust-lang/rust/pull/127054, the
T: ?Trait
andT: for<...> Trait
syntax is mutually exclusive, and this code no longer compiles:Update the reference to reflect that.
r? @compiler-errors