]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-struct-field.rs
Auto merge of #106143 - matthiaskrgr:rollup-3kpy1dc, r=matthiaskrgr
[rust.git] / src / test / ui / wf / wf-struct-field.rs
1 // Test that we check struct fields for WFedness.
2
3 #![feature(associated_type_defaults)]
4
5 #![allow(dead_code)]
6
7 struct IsCopy<T:Copy> {
8     value: T
9 }
10
11 struct SomeStruct<A> {
12     data: IsCopy<A> //~ ERROR E0277
13 }
14
15
16 fn main() { }