Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
structs-enums
/
unit-like-struct.rs
blob: 8a2f500676e688bfbeec60a9485a706adb0aab0f [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
struct
Foo
;
pub
fn
main
()
{
let
x
:
Foo
=
Foo
;
match
x
{
Foo
=>
{
println
!(
"hi"
);
}
}
}