Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
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"
);
}
}
}