rust/tests/ui/wf/wf-trait-associated-type-tr...

17 lines
280 B
Rust

// Test that we check associated type default values for WFedness.
#![feature(associated_type_defaults)]
#![allow(dead_code)]
struct IsCopy<T:Copy> { x: T }
trait SomeTrait {
type Type1;
type Type2 = (IsCopy<Self::Type1>, bool);
//~^ ERROR E0277
}
fn main() { }