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