Sign in
rust
/
rust
/
ef00ebfdec7d9d257ef19dc9d6d17bf64df0373d
/
.
/
tests
/
ui
/
half-open-range-patterns
/
pat-tuple-5.rs
blob: 4ed43954e0294adfe620a6367ffab63ecbcdbf1e [
file
]
fn
main
()
{
const
PAT
:
u8
=
1
;
match
(
0
,
1
)
{
(
PAT
..)
=>
{}
//~ ERROR mismatched types
}
}