about summary refs log tree commit diff
path: root/src/test/ui/half-open-range-patterns/half-open-range-pats-syntactic-pass.rs
blob: a663acd2d191c381313bb11c23d1b0a819a4bfc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// check-pass

// Test the parsing of half-open ranges.

#![feature(exclusive_range_pattern)]
#![feature(half_open_range_patterns)]

fn main() {}

#[cfg(FALSE)]
fn syntax() {
    match scrutinee {
        X.. | 0.. | 'a'.. | 0.0f32.. => {}
        ..=X | ...X | ..X => {}
        ..=0 | ...0 | ..0 => {}
        ..='a' | ...'a' | ..'a' => {}
        ..=0.0f32 | ...0.0f32 | ..0.0f32 => {}
    }

    macro_rules! mac {
        ($e:expr) => {
            let ..$e;
            let ...$e;
            let ..=$e;
            let $e..;
            let $e...;
            let $e..=;
        }
    }

    mac!(0);
}