blob: f054bbea4e3e7c99d1219b0ee384147c26af359c [file] [log] [blame]
#![feature(half_open_range_patterns)]
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
}
}