rust/tests/ui/wf/wf-struct-field.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
229 B
Rust
Raw Normal View History

// 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() { }