Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
4486c24db3ca1c698b34ea08bee15194774b53df
/
.
/
tests
/
ui
/
binding
/
match-range-static.rs
blob: 478dfb3cf414951dc917763a80173ddd25e66f91 [
file
] [
log
] [
blame
]
//@ run-pass
//@ pretty-expanded FIXME #23616
#![
allow
(
non_upper_case_globals
)]
const
s
:
isize
=
1
;
const
e
:
isize
=
42
;
pub
fn
main
()
{
match
7
{
s
..=
e
=>
(),
_
=>
(),
}
}