summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-match-check.eval2.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/consts/const-match-check.eval2.stderr')
-rw-r--r--tests/ui/consts/const-match-check.eval2.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/consts/const-match-check.eval2.stderr b/tests/ui/consts/const-match-check.eval2.stderr
index 5d86ca4bf..0c74a7b3d 100644
--- a/tests/ui/consts/const-match-check.eval2.stderr
+++ b/tests/ui/consts/const-match-check.eval2.stderr
@@ -9,8 +9,8 @@ LL | let x: [i32; { let 0 = 0; 0 }] = [];
= note: the matched value is of type `i32`
help: you might want to use `if let` to ignore the variants that aren't matched
|
-LL | let x: [i32; { if let 0 = 0 { todo!() } 0 }] = [];
- | ++ ~~~~~~~~~~~
+LL | let x: [i32; { if let 0 = 0 { todo!() }; 0 }] = [];
+ | ++ +++++++++++
help: alternatively, you could prepend the pattern with an underscore to define a new named variable; identifiers cannot begin with digits
|
LL | let x: [i32; { let _0 = 0; 0 }] = [];