summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const_let_refutable.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const_let_refutable.stderr')
-rw-r--r--src/test/ui/consts/const_let_refutable.stderr11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/consts/const_let_refutable.stderr b/src/test/ui/consts/const_let_refutable.stderr
deleted file mode 100644
index d7e8c048f..000000000
--- a/src/test/ui/consts/const_let_refutable.stderr
+++ /dev/null
@@ -1,11 +0,0 @@
-error[E0005]: refutable pattern in function argument: `&[]`, `&[_]` and `&[_, _, _, ..]` not covered
- --> $DIR/const_let_refutable.rs:3:16
- |
-LL | const fn slice(&[a, b]: &[i32]) -> i32 {
- | ^^^^^^^ patterns `&[]`, `&[_]` and `&[_, _, _, ..]` not covered
- |
- = note: the matched value is of type `&[i32]`
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0005`.