mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
17 lines
232 B
Rust
17 lines
232 B
Rust
// Test that we check struct fields for WFedness.
|
|
|
|
#![feature(associated_type_defaults)]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
struct IsCopy<T:Copy> {
|
|
value: T
|
|
}
|
|
|
|
enum SomeEnum<A> {
|
|
SomeVariant(IsCopy<A>) //~ ERROR E0277
|
|
}
|
|
|
|
|
|
fn main() { }
|