summaryrefslogtreecommitdiffstats
path: root/src/test/ui/destructuring-assignment/slice_destructure_fail.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/destructuring-assignment/slice_destructure_fail.stderr')
-rw-r--r--src/test/ui/destructuring-assignment/slice_destructure_fail.stderr23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/test/ui/destructuring-assignment/slice_destructure_fail.stderr b/src/test/ui/destructuring-assignment/slice_destructure_fail.stderr
new file mode 100644
index 000000000..92c86feba
--- /dev/null
+++ b/src/test/ui/destructuring-assignment/slice_destructure_fail.stderr
@@ -0,0 +1,23 @@
+error: `..` can only be used once per slice pattern
+ --> $DIR/slice_destructure_fail.rs:3:14
+ |
+LL | [a, .., b, ..] = [0, 1];
+ | -- ^^ can only be used once per slice pattern
+ | |
+ | previously used here
+
+error[E0527]: pattern requires 3 elements but array has 2
+ --> $DIR/slice_destructure_fail.rs:4:3
+ |
+LL | [a, a, b] = [1, 2];
+ | ^^^^^^^^^ expected 2 elements
+
+error[E0527]: pattern requires 1 element but array has 2
+ --> $DIR/slice_destructure_fail.rs:5:3
+ |
+LL | [_] = [1, 2];
+ | ^^^ expected 2 elements
+
+error: aborting due to 3 previous errors
+
+For more information about this error, try `rustc --explain E0527`.