Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
match
/
issue-26251.rs
blob: b1a81fcf20920131d4f336d3ac5831374178b278 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
overlapping_range_endpoints
)]
fn
main
()
{
let
x
=
'a'
;
let
y
=
match
x
{
'a'
..=
'b'
if
false
=>
"one"
,
'a'
=>
"two"
,
'a'
..=
'b'
=>
"three"
,
_
=>
panic
!(
"what?"
),
};
assert_eq
!(
y
,
"two"
);
}