rust/tests/ui/wf/wf-enum-fields-struct-varia...

19 lines
256 B
Rust

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