Closed
Description
where
clauses on associated types don't work yet so should be feature gated, presumably with feature(generic_associated_types)
. cc #44265. Happens on versions >= 1.24
trait A {
type X where Self: Copy; // Does nothing!
}
fn main() {}