rust/tests/ui/wf/wf-struct-bound.rs

17 lines
242 B
Rust

// 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() { }