about summary refs log tree commit diff
path: root/tests/ui/array-slice-vec/infer_array_len.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/array-slice-vec/infer_array_len.stderr')
-rw-r--r--tests/ui/array-slice-vec/infer_array_len.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/array-slice-vec/infer_array_len.stderr b/tests/ui/array-slice-vec/infer_array_len.stderr
new file mode 100644
index 00000000000..c2a509a1963
--- /dev/null
+++ b/tests/ui/array-slice-vec/infer_array_len.stderr
@@ -0,0 +1,14 @@
+error[E0282]: type annotations needed
+  --> $DIR/infer_array_len.rs:19:9
+   |
+LL |     let [_, _] = a.into();
+   |         ^^^^^^
+   |
+help: consider giving this pattern a type
+   |
+LL |     let [_, _]: /* Type */ = a.into();
+   |               ++++++++++++
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0282`.