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