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