rust/src/test/ui/feature-gates/feature-gate-exclusive-range-pattern.rs
2018-12-25 21:08:33 -07:00

7 lines
133 B
Rust

pub fn main() {
match 22 {
0 .. 3 => {} //~ ERROR exclusive range pattern syntax is experimental
_ => {}
}
}