mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
11 lines
136 B
Rust
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() {
|
|
}
|