summaryrefslogtreecommitdiffstats
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, 0 insertions, 14 deletions
diff --git a/tests/ui/array-slice-vec/infer_array_len.stderr b/tests/ui/array-slice-vec/infer_array_len.stderr
deleted file mode 100644
index c2a509a19..000000000
--- a/tests/ui/array-slice-vec/infer_array_len.stderr
+++ /dev/null
@@ -1,14 +0,0 @@
-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`.