Sign in
rust
/
rust
/
c021d2ddd49f8ff07d27fa772d88a3eb229e63ec
/
.
/
tests
/
ui
/
resolve
/
regression-struct-called-as-function-148919.rs
blob: 7358e1716c11a21b5d5ad11fbeaa28124e3929b1 [
file
]
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
()
{}