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