blob: dc3cb8b343d32666a415627de6091ee9d8e1579e [file] [log] [blame] [edit]
//@ run-rustfix
struct Foo;
fn From<i32> for Foo {
//~^ ERROR you might have meant to write `impl` instead of `fn`
fn from(_a: i32) -> Self {
Foo
}
}
fn main() {}