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