blob: aaf7ef5bd792987b46539bb1d852904e04858582 [file] [log] [blame]
fn main() {
let x = 1u8;
match x {
0u8..=3i8 => (), //~ ERROR E0308
_ => ()
}
}