1 2 3 4 5 6 7
trait I {} type K = dyn I + 'static; fn foo(_x: K) {} //~^ ERROR the size for values of type fn main() {}