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