Sign in
rust
/
rust
/
7ce91c53c4c7fa80b60b49e030b0298d4e575d23
/
.
/
tests
/
ui
/
structs
/
unit-like-struct.rs
blob: 8a2f500676e688bfbeec60a9485a706adb0aab0f [
file
]
//@ run-pass
struct
Foo
;
pub
fn
main
()
{
let
x
:
Foo
=
Foo
;
match
x
{
Foo
=>
{
println
!(
"hi"
);
}
}
}