]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-struct-field.rs
Rollup merge of #105843 - compiler-errors:sugg-const, r=lcnr
[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() { }