blob: 2d63fe0785616fe3c3070e5f1829ad7af3bbcb4f (
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
|
fn main() {}
#[cfg(FALSE)]
fn syntax() {
match &0 {
&0.. | _ => {}
//~^ ERROR the range pattern here has ambiguous interpretation
&0..= | _ => {}
//~^ ERROR the range pattern here has ambiguous interpretation
//~| ERROR inclusive range with no end
&0... | _ => {}
//~^ ERROR inclusive range with no end
}
match &0 {
&..0 | _ => {}
//~^ ERROR the range pattern here has ambiguous interpretation
&..=0 | _ => {}
//~^ ERROR the range pattern here has ambiguous interpretation
&...0 | _ => {}
//~^ ERROR the range pattern here has ambiguous interpretation
//~| ERROR range-to patterns with `...` are not allowed
}
}
|