]> git.lizzy.rs Git - rust.git/blob - tests/ui/half-open-range-patterns/slice_pattern_syntax_problem1.rs
Rollup merge of #106648 - Nilstrieb:poly-cleanup, r=compiler-errors
[rust.git] / tests / ui / half-open-range-patterns / slice_pattern_syntax_problem1.rs
1 // Instead of allowing the previous case, maintain the feature gate for slice patterns for now.
2 fn main() {
3     let xs = [13, 1, 5, 2, 3, 1, 21, 8];
4     let [a @ 3.., b @ ..3, c @ 4..6, ..] = xs;
5     //~^ `X..` patterns in slices are experimental
6     //~| exclusive range pattern syntax is experimental
7     //~| exclusive range pattern syntax is experimental
8 }