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