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