mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
185 B
Rust
13 lines
185 B
Rust
//@ run-pass
|
|
#![deny(dead_code)]
|
|
|
|
const LOW_RANGE: char = '0';
|
|
const HIGH_RANGE: char = '9';
|
|
|
|
fn main() {
|
|
match '5' {
|
|
LOW_RANGE..=HIGH_RANGE => (),
|
|
_ => ()
|
|
};
|
|
}
|