summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/const-pat-non-exaustive-let-new-var.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/const-pat-non-exaustive-let-new-var.rs')
-rw-r--r--tests/ui/suggestions/const-pat-non-exaustive-let-new-var.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/ui/suggestions/const-pat-non-exaustive-let-new-var.rs b/tests/ui/suggestions/const-pat-non-exaustive-let-new-var.rs
index 15f08486f..af47ba8ba 100644
--- a/tests/ui/suggestions/const-pat-non-exaustive-let-new-var.rs
+++ b/tests/ui/suggestions/const-pat-non-exaustive-let-new-var.rs
@@ -2,10 +2,9 @@ fn main() {
let A = 3;
//~^ ERROR refutable pattern in local binding
//~| patterns `i32::MIN..=1_i32` and `3_i32..=i32::MAX` not covered
- //~| missing patterns are not covered because `a` is interpreted as a constant pattern, not a new variable
+ //~| missing patterns are not covered because `A` is interpreted as a constant pattern, not a new variable
//~| HELP introduce a variable instead
- //~| SUGGESTION a_var
+ //~| SUGGESTION A_var
const A: i32 = 2;
- //~^ constant defined here
}