blob: 9950647198395174a30e31790a35c8e2da595e98 [file] [log] [blame] [edit]
//@ run-pass
#![deny(dead_code)]
const LOW_RANGE: char = '0';
const HIGH_RANGE: char = '9';
fn main() {
match '5' {
LOW_RANGE..=HIGH_RANGE => (),
_ => ()
};
}