Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
consts
/
const-unit-struct.rs
blob: 1c9e0e8d3c9891887011e32435e5a69592d6b1b6 [
file
] [
log
] [
blame
]
// run-pass
// pretty-expanded FIXME #23616
struct
Foo
;
static
X
:
Foo
=
Foo
;
pub
fn
main
()
{
match
X
{
Foo
=>
{}
}
}