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