@@ -35,49 +35,49 @@ LL | match x { //~ ERROR non-exhaustive patterns
3535 | ^ patterns `-128i8..=-8i8`, `-6i8`, `121i8..=124i8` and 1 more not covered
3636
3737error[E0004]: non-exhaustive patterns: `-128i8` not covered
38- --> $DIR/exhaustive_integer_patterns.rs:100 :11
38+ --> $DIR/exhaustive_integer_patterns.rs:92 :11
3939 |
4040LL | match 0i8 { //~ ERROR non-exhaustive patterns
4141 | ^^^ pattern `-128i8` not covered
4242
4343error[E0004]: non-exhaustive patterns: `0i16` not covered
44- --> $DIR/exhaustive_integer_patterns.rs:108 :11
44+ --> $DIR/exhaustive_integer_patterns.rs:100 :11
4545 |
4646LL | match 0i16 { //~ ERROR non-exhaustive patterns
4747 | ^^^^ pattern `0i16` not covered
4848
4949error[E0004]: non-exhaustive patterns: `128u8..=255u8` not covered
50- --> $DIR/exhaustive_integer_patterns.rs:126 :11
50+ --> $DIR/exhaustive_integer_patterns.rs:118 :11
5151 |
5252LL | match 0u8 { //~ ERROR non-exhaustive patterns
5353 | ^^^ pattern `128u8..=255u8` not covered
5454
5555error[E0004]: non-exhaustive patterns: `(0u8, Some(_))` and `(2u8..=255u8, Some(_))` not covered
56- --> $DIR/exhaustive_integer_patterns.rs:138 :11
56+ --> $DIR/exhaustive_integer_patterns.rs:130 :11
5757 |
5858LL | match (0u8, Some(())) { //~ ERROR non-exhaustive patterns
5959 | ^^^^^^^^^^^^^^^ patterns `(0u8, Some(_))` and `(2u8..=255u8, Some(_))` not covered
6060
6161error[E0004]: non-exhaustive patterns: `(126u8..=127u8, false)` not covered
62- --> $DIR/exhaustive_integer_patterns.rs:143 :11
62+ --> $DIR/exhaustive_integer_patterns.rs:135 :11
6363 |
6464LL | match (0u8, true) { //~ ERROR non-exhaustive patterns
6565 | ^^^^^^^^^^^ pattern `(126u8..=127u8, false)` not covered
6666
6767error[E0004]: non-exhaustive patterns: `340282366920938463463374607431768211455u128` not covered
68- --> $DIR/exhaustive_integer_patterns.rs:163 :11
68+ --> $DIR/exhaustive_integer_patterns.rs:155 :11
6969 |
7070LL | match 0u128 { //~ ERROR non-exhaustive patterns
7171 | ^^^^^ pattern `340282366920938463463374607431768211455u128` not covered
7272
7373error[E0004]: non-exhaustive patterns: `5u128..=340282366920938463463374607431768211455u128` not covered
74- --> $DIR/exhaustive_integer_patterns.rs:167 :11
74+ --> $DIR/exhaustive_integer_patterns.rs:159 :11
7575 |
7676LL | match 0u128 { //~ ERROR non-exhaustive patterns
7777 | ^^^^^ pattern `5u128..=340282366920938463463374607431768211455u128` not covered
7878
7979error[E0004]: non-exhaustive patterns: `0u128..=3u128` not covered
80- --> $DIR/exhaustive_integer_patterns.rs:171 :11
80+ --> $DIR/exhaustive_integer_patterns.rs:163 :11
8181 |
8282LL | match 0u128 { //~ ERROR non-exhaustive patterns
8383 | ^^^^^ pattern `0u128..=3u128` not covered
0 commit comments