Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
rfcs
/
rfc-2005-default-binding-mode
/
range.rs
blob: 8795adcdd4202a275b614d6c7c30286688663ff5 [
file
] [
log
] [
blame
]
//@ run-pass
pub
fn
main
()
{
let
i
=
5
;
match
&&&&
i
{
1
..=
3
=>
panic
!(),
4
..=
8
=>
{},
_
=>
panic
!(),
}
}