]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/const-pat-non-exaustive-let-new-var.stderr
Auto merge of #65099 - pnkfelix:issue-63154-needed-more-normalize, r=nagisa
[rust.git] / src / test / ui / suggestions / const-pat-non-exaustive-let-new-var.stderr
1 error[E0005]: refutable pattern in local binding: `std::i32::MIN..=1i32` and `3i32..=std::i32::MAX` not covered
2   --> $DIR/const-pat-non-exaustive-let-new-var.rs:2:9
3    |
4 LL |     let A = 3;
5    |         ^
6    |         |
7    |         interpreted as a constant pattern, not a new variable
8    |         help: introduce a variable instead: `a_var`
9 ...
10 LL |     const A: i32 = 2;
11    |     ----------------- constant defined here
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0005`.