mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
22 lines
456 B
Rust
22 lines
456 B
Rust
//@ check-pass
|
|
|
|
#![feature(exclusive_range_pattern)]
|
|
|
|
#![allow(ellipsis_inclusive_range_patterns)]
|
|
|
|
fn main() {
|
|
macro_rules! mac_expr {
|
|
($e:expr) => {
|
|
if let 2...$e = 3 {}
|
|
if let 2..=$e = 3 {}
|
|
if let 2..$e = 3 {}
|
|
if let ..$e = 3 {}
|
|
if let ..=$e = 3 {}
|
|
if let $e.. = 5 {}
|
|
if let $e..5 = 4 {}
|
|
if let $e..=5 = 4 {}
|
|
}
|
|
}
|
|
mac_expr!(4);
|
|
}
|