Sign in
rust
/
rust
/
d7a18fc052d1db50057d6fff023ca4bd8ec7617e
/
.
/
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
=>
{}
}
}