mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
14 lines
178 B
Rust
14 lines
178 B
Rust
trait Trait {
|
|
fn foo(&self) -> Self;
|
|
}
|
|
|
|
fn call_foo(x: Box<dyn Trait>) {
|
|
//~^ ERROR E0038
|
|
let y = x.foo();
|
|
//~^ ERROR E0038
|
|
//~| ERROR E0277
|
|
}
|
|
|
|
fn main() {
|
|
}
|