// Test that we check associated type bounds for WFedness. #![feature(associated_type_defaults)] #![allow(dead_code)] trait ExtraCopy { } trait SomeTrait { type Type1: ExtraCopy; //~ ERROR E0277 } fn main() { }