rustc/tests/ui/error-codes/E0038.rs
2023-08-02 10:33:26 +02:00

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() {
}