blob: c9eb9d894331e87f147d3a56ab729d0c1d857813 [file] [log] [blame]
// 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() { }