summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0528.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/error-codes/E0528.stderr')
-rw-r--r--src/test/ui/error-codes/E0528.stderr9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/ui/error-codes/E0528.stderr b/src/test/ui/error-codes/E0528.stderr
new file mode 100644
index 000000000..21615f954
--- /dev/null
+++ b/src/test/ui/error-codes/E0528.stderr
@@ -0,0 +1,9 @@
+error[E0528]: pattern requires at least 3 elements but array has 2
+ --> $DIR/E0528.rs:4:10
+ |
+LL | &[a, b, c, rest @ ..] => {
+ | ^^^^^^^^^^^^^^^^^^^^ pattern cannot match array of 2 elements
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0528`.