Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
match-identifierpattern-enum.rs
blob: c712667e27a4f9dd91c39397faee85d2c0016d4b [
file
] [
log
] [
blame
]
enum
Foo
{
I
(
i32
),
}
fn
main
()
{
let
x
=
Foo
::
I
(
1
);
match
x
{
a
@
Foo
::
I
(
b
)
=>
{},
_
=>
{},
};
}