1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// Test that we check supertrait bounds for WFedness. #![feature(associated_type_defaults)] #![allow(dead_code)] trait ExtraCopy<T:Copy> { } trait SomeTrait<T,U> where T: ExtraCopy<U> //~ ERROR E0277 { } fn main() { }