Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
5f6fa960c254dfda8ba1d5dc2fb281b6908d8005
/
.
/
tests
/
ui
/
consts
/
const-unit-struct.rs
blob: 2dadb000f4cae8df140e777d337d9e80a5f0ed73 [
file
]
//@ run-pass
struct
Foo
;
static
X
:
Foo
=
Foo
;
pub
fn
main
()
{
match
X
{
Foo
=>
{}
}
}