Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
pattern-or.rs
blob: 054b43f050465a228e4f9bf79a989e8d24eb00bc [
file
] [
log
] [
blame
]
// { dg-additional-options "-fsyntax-only" }
fn
main
()
{
match
((
12
,
13
))
{
(
_
,
5
)
|
(
12
,
_
)
=>
{}
}
}