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