mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-14 20:06:54 +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() {
|
|
}
|