Chih-Hung Hsieh | 43f0694 | 2019-12-19 15:01:08 -0800 | [diff] [blame^] | 1 | error[E0005]: refutable pattern in local binding: `std::i32::MIN..=-1i32` not covered |
Inna Palant | ff3f07a | 2019-07-11 16:15:26 -0700 | [diff] [blame] | 2 | --> $DIR/const-match-check.rs:31:24 |
| 3 | | |
| 4 | LL | let x: [i32; { let 0 = 0; 0 }] = []; |
Chih-Hung Hsieh | 43f0694 | 2019-12-19 15:01:08 -0800 | [diff] [blame^] | 5 | | ^ pattern `std::i32::MIN..=-1i32` not covered |
Inna Palant | ff3f07a | 2019-07-11 16:15:26 -0700 | [diff] [blame] | 6 | |
| 7 | error: aborting due to previous error |
| 8 | |
| 9 | For more information about this error, try `rustc --explain E0005`. |