@@ -35,49 +35,49 @@ LL | match x { //~ ERROR non-exhaustive patterns
35
35
| ^ patterns `-128i8..=-8i8`, `-6i8`, `121i8..=124i8` and 1 more not covered
36
36
37
37
error[E0004]: non-exhaustive patterns: `-128i8` not covered
38
- --> $DIR/exhaustive_integer_patterns.rs:100 :11
38
+ --> $DIR/exhaustive_integer_patterns.rs:92 :11
39
39
|
40
40
LL | match 0i8 { //~ ERROR non-exhaustive patterns
41
41
| ^^^ pattern `-128i8` not covered
42
42
43
43
error[E0004]: non-exhaustive patterns: `0i16` not covered
44
- --> $DIR/exhaustive_integer_patterns.rs:108 :11
44
+ --> $DIR/exhaustive_integer_patterns.rs:100 :11
45
45
|
46
46
LL | match 0i16 { //~ ERROR non-exhaustive patterns
47
47
| ^^^^ pattern `0i16` not covered
48
48
49
49
error[E0004]: non-exhaustive patterns: `128u8..=255u8` not covered
50
- --> $DIR/exhaustive_integer_patterns.rs:126 :11
50
+ --> $DIR/exhaustive_integer_patterns.rs:118 :11
51
51
|
52
52
LL | match 0u8 { //~ ERROR non-exhaustive patterns
53
53
| ^^^ pattern `128u8..=255u8` not covered
54
54
55
55
error[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
57
57
|
58
58
LL | match (0u8, Some(())) { //~ ERROR non-exhaustive patterns
59
59
| ^^^^^^^^^^^^^^^ patterns `(0u8, Some(_))` and `(2u8..=255u8, Some(_))` not covered
60
60
61
61
error[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
63
63
|
64
64
LL | match (0u8, true) { //~ ERROR non-exhaustive patterns
65
65
| ^^^^^^^^^^^ pattern `(126u8..=127u8, false)` not covered
66
66
67
67
error[E0004]: non-exhaustive patterns: `340282366920938463463374607431768211455u128` not covered
68
- --> $DIR/exhaustive_integer_patterns.rs:163 :11
68
+ --> $DIR/exhaustive_integer_patterns.rs:155 :11
69
69
|
70
70
LL | match 0u128 { //~ ERROR non-exhaustive patterns
71
71
| ^^^^^ pattern `340282366920938463463374607431768211455u128` not covered
72
72
73
73
error[E0004]: non-exhaustive patterns: `5u128..=340282366920938463463374607431768211455u128` not covered
74
- --> $DIR/exhaustive_integer_patterns.rs:167 :11
74
+ --> $DIR/exhaustive_integer_patterns.rs:159 :11
75
75
|
76
76
LL | match 0u128 { //~ ERROR non-exhaustive patterns
77
77
| ^^^^^ pattern `5u128..=340282366920938463463374607431768211455u128` not covered
78
78
79
79
error[E0004]: non-exhaustive patterns: `0u128..=3u128` not covered
80
- --> $DIR/exhaustive_integer_patterns.rs:171 :11
80
+ --> $DIR/exhaustive_integer_patterns.rs:163 :11
81
81
|
82
82
LL | match 0u128 { //~ ERROR non-exhaustive patterns
83
83
| ^^^^^ pattern `0u128..=3u128` not covered
0 commit comments