blob: 69be71cd130b070fb7b74c77c1788087278a3843 [file] [log] [blame]
// Test that we check struct bounds for WFedness.
#![feature(associated_type_defaults)]
#![allow(dead_code)]
trait ExtraCopy<T:Copy> { }
struct SomeStruct<T,U> //~ ERROR E0277
where T: ExtraCopy<U>
{
data: (T,U)
}
fn main() { }