rust/src/test/ui/error-codes/E0038.rs
2019-05-29 00:57:31 -04:00

11 lines
136 B
Rust

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