1 2 3 4 5 6 7 8 9 10 11
trait Trait { fn foo(&self) -> Self; } fn call_foo(x: Box<dyn Trait>) { //~^ ERROR E0038 let y = x.foo(); } fn main() { }