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, 0 insertions, 23 deletions
diff --git a/src/test/ui/destructuring-assignment/slice_destructure_fail.stderr b/src/test/ui/destructuring-assignment/slice_destructure_fail.stderr
deleted file mode 100644
index 92c86feba..000000000
--- a/src/test/ui/destructuring-assignment/slice_destructure_fail.stderr
+++ /dev/null
@@ -1,23 +0,0 @@
-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`.