summaryrefslogtreecommitdiffstats
path: root/src/test/ui/wf/wf-enum-bound.rs
blob: 042a2cb09d27b2a3cd980f8f53d60e2f3da73469 (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>
    where T: ExtraCopy<U> //~ ERROR E0277
{
    SomeVariant(T,U)
}


fn main() { }