Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
structs
/
issue-80853.rs
blob: 242d0af959d40f385d2609a0450c3138c81d62cd [
file
]
struct
S
;
fn
repro_ref
(
thing
:
S
)
{
thing
();
//~ ERROR expected function, found `S`
}
fn
main
()
{}