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