Sign in
fuchsia
/
third_party
/
rust
/
97d936423c914c4e3402bfecfd6943e1edf23815
/
.
/
src
/
test
/
ui
/
union
/
union-const-pat.rs
blob: e7cb248a201acb8d0dffa58ca3a1cee2803d7613 [
file
] [
log
] [
blame
]
union U
{
a
:
usize
,
b
:
usize
,
}
const
C
:
U
=
U
{
a
:
10
};
fn
main
()
{
match
C
{
C
=>
{}
//~ ERROR cannot use unions in constant patterns
_
=>
{}
}
}