summaryrefslogtreecommitdiffstats
path: root/src/test/ui/destructuring-assignment/slice_destructure_fail.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/destructuring-assignment/slice_destructure_fail.rs')
-rw-r--r--src/test/ui/destructuring-assignment/slice_destructure_fail.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/test/ui/destructuring-assignment/slice_destructure_fail.rs b/src/test/ui/destructuring-assignment/slice_destructure_fail.rs
deleted file mode 100644
index 33b09eb34..000000000
--- a/src/test/ui/destructuring-assignment/slice_destructure_fail.rs
+++ /dev/null
@@ -1,6 +0,0 @@
-fn main() {
- let (mut a, mut b);
- [a, .., b, ..] = [0, 1]; //~ ERROR `..` can only be used once per slice pattern
- [a, a, b] = [1, 2]; //~ ERROR pattern requires 3 elements but array has 2
- [_] = [1, 2]; //~ ERROR pattern requires 1 element but array has 2
-}