Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
trait Trait {
fn foo(&self) -> Self;
}
fn call_foo(x: Box<dyn Trait>) {
//~^ ERROR E0038
let y = x.foo();
fn main() {