Sign in
fuchsia
/
third_party
/
rust
/
2a3e17c6d5c49eeb770ade2fa660f98e9cce0ce0
/
.
/
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
}
}