summaryrefslogtreecommitdiffstats
path: root/src/test/ui/wf/wf-struct-field.rs
blob: 63f8b438251e3c312f99a0c4e1a616271957000a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Test that we check struct fields for WFedness.

#![feature(associated_type_defaults)]

#![allow(dead_code)]

struct IsCopy<T:Copy> {
    value: T
}

struct SomeStruct<A> {
    data: IsCopy<A> //~ ERROR E0277
}


fn main() { }