rust/src/test/ui/feature-gates/feature-gate-exclusive-range-pattern.rs

11 lines
237 B
Rust
Raw Normal View History

#[cfg(FALSE)]
fn foo() {
2015-01-31 10:23:42 -06:00
match 22 {
0 .. 3 => {} //~ ERROR exclusive range pattern syntax is experimental
PATH .. 3 => {} //~ ERROR exclusive range pattern syntax is experimental
2014-09-24 00:15:16 -05:00
_ => {}
}
}
fn main() {}