mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-01 17:26:43 +00:00
10 lines
116 B
Rust
10 lines
116 B
Rust
// check-pass
|
|
|
|
fn main() {
|
|
const MIN: i8 = -5;
|
|
match 5i8 {
|
|
MIN..=-1 => {},
|
|
_ => {},
|
|
}
|
|
}
|