trait Trait {
fn foo(&self) -> Self;
}
fn call_foo(x: Box<Trait>) {
//~^ ERROR E0038
let y = x.foo();
fn main() {