// Test that we check struct fields for WFedness. #![feature(associated_type_defaults)] #![allow(dead_code)] struct IsCopy { value: T } enum SomeEnum { SomeVariant(IsCopy) //~ ERROR E0277 } fn main() { }