summary refs log tree commit diff
path: root/src/test/ui/wf/wf-enum-bound.rs
blob: c9eb9d894331e87f147d3a56ab729d0c1d857813 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Test that we check enum bounds for WFedness.

#![feature(associated_type_defaults)]

#![allow(dead_code)]

trait ExtraCopy<T:Copy> { }

enum SomeEnum<T,U> //~ ERROR E0277
    where T: ExtraCopy<U>
{
    SomeVariant(T,U)
}


fn main() { }