]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/const-pat-non-exaustive-let-new-var.stderr
Rollup merge of #90420 - GuillaumeGomez:rustdoc-internals-feature, r=camelid
[rust.git] / src / test / ui / suggestions / const-pat-non-exaustive-let-new-var.stderr
1 error[E0005]: refutable pattern in local binding: `i32::MIN..=1_i32` and `3_i32..=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    = note: the matched value is of type `i32`
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0005`.