blob: 7358e1716c11a21b5d5ad11fbeaa28124e3929b1 [file] [log] [blame] [edit]
struct Bar {}
impl Bar {
fn into_self(self) -> Bar {
Bar(self)
//~^ ERROR expected function, tuple struct or tuple variant, found struct `Bar` [E0423]
}
}
fn main() {}