rust/tests/ui/dyn-compatibility/erroneous_signature.rs
2024-10-10 01:13:29 +02:00

18 lines
301 B
Rust

trait Foo {
fn err(&self) -> MissingType;
//~^ ERROR cannot find type `MissingType` in this scope
}
impl Foo for i32 {
fn err(&self) -> MissingType {
//~^ ERROR cannot find type `MissingType` in this scope
0
}
}
fn coerce(x: &i32) -> &dyn Foo {
x
}
fn main() {}