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