summaryrefslogtreecommitdiffstats
path: root/tests/ui/half-open-range-patterns/slice_pattern_syntax_problem1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/half-open-range-patterns/slice_pattern_syntax_problem1.rs')
-rw-r--r--tests/ui/half-open-range-patterns/slice_pattern_syntax_problem1.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/half-open-range-patterns/slice_pattern_syntax_problem1.rs b/tests/ui/half-open-range-patterns/slice_pattern_syntax_problem1.rs
new file mode 100644
index 000000000..c37af75b8
--- /dev/null
+++ b/tests/ui/half-open-range-patterns/slice_pattern_syntax_problem1.rs
@@ -0,0 +1,8 @@
+// Instead of allowing the previous case, maintain the feature gate for slice patterns for now.
+fn main() {
+ let xs = [13, 1, 5, 2, 3, 1, 21, 8];
+ let [a @ 3.., b @ ..3, c @ 4..6, ..] = xs;
+ //~^ `X..` patterns in slices are experimental
+ //~| exclusive range pattern syntax is experimental
+ //~| exclusive range pattern syntax is experimental
+}