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