summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-codes/E0004.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/error-codes/E0004.stderr6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ui/error-codes/E0004.stderr b/tests/ui/error-codes/E0004.stderr
index 603bc5237..ced478d65 100644
--- a/tests/ui/error-codes/E0004.stderr
+++ b/tests/ui/error-codes/E0004.stderr
@@ -5,12 +5,12 @@ LL | match x {
| ^ pattern `Terminator::HastaLaVistaBaby` not covered
|
note: `Terminator` defined here
- --> $DIR/E0004.rs:2:5
+ --> $DIR/E0004.rs:1:6
|
LL | enum Terminator {
- | ----------
+ | ^^^^^^^^^^
LL | HastaLaVistaBaby,
- | ^^^^^^^^^^^^^^^^ not covered
+ | ---------------- not covered
= note: the matched value is of type `Terminator`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|