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