mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
40 lines
615 B
Rust
40 lines
615 B
Rust
// build-pass
|
|
|
|
#![allow(incomplete_features)]
|
|
#![feature(inline_const_pat, exclusive_range_pattern)]
|
|
|
|
fn main() {
|
|
const N: u32 = 10;
|
|
let x: u32 = 3;
|
|
|
|
match x {
|
|
1 ..= const { N + 1 } => {},
|
|
_ => {},
|
|
}
|
|
|
|
match x {
|
|
const { N - 1 } ..= 10 => {},
|
|
_ => {},
|
|
}
|
|
|
|
match x {
|
|
const { N - 1 } ..= const { N + 1 } => {},
|
|
_ => {},
|
|
}
|
|
|
|
match x {
|
|
.. const { N + 1 } => {},
|
|
_ => {},
|
|
}
|
|
|
|
match x {
|
|
const { N - 1 } .. => {},
|
|
_ => {},
|
|
}
|
|
|
|
match x {
|
|
..= const { N + 1 } => {},
|
|
_ => {}
|
|
}
|
|
}
|