// Test that we check enum bounds for WFedness. #![feature(associated_type_defaults)] #![allow(dead_code)] trait ExtraCopy { } enum SomeEnum where T: ExtraCopy //~ ERROR E0277 { SomeVariant(T,U) } fn main() { }