summaryrefslogtreecommitdiffstats
path: root/src/test/ui/array-slice-vec/match_arr_unknown_len.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/array-slice-vec/match_arr_unknown_len.stderr')
-rw-r--r--src/test/ui/array-slice-vec/match_arr_unknown_len.stderr12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/array-slice-vec/match_arr_unknown_len.stderr b/src/test/ui/array-slice-vec/match_arr_unknown_len.stderr
deleted file mode 100644
index 5e531a993..000000000
--- a/src/test/ui/array-slice-vec/match_arr_unknown_len.stderr
+++ /dev/null
@@ -1,12 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/match_arr_unknown_len.rs:3:9
- |
-LL | [1, 2] => true,
- | ^^^^^^ expected `2`, found `N`
- |
- = note: expected array `[u32; 2]`
- found array `[u32; N]`
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0308`.