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