1
- // revisions: normal exhaustive_patterns
1
+ // revisions: normal min_exh_pats exhaustive_patterns
2
+ // gate-test-min_exhaustive_patterns
2
3
//
3
4
// This tests correct handling of empty types in exhaustiveness checking.
4
5
//
9
10
// This feature is useful to avoid `!` falling back to `()` all the time.
10
11
#![ feature( never_type_fallback) ]
11
12
#![ cfg_attr( exhaustive_patterns, feature( exhaustive_patterns) ) ]
13
+ #![ cfg_attr( min_exh_pats, feature( min_exhaustive_patterns) ) ]
14
+ //[min_exh_pats]~^ WARN the feature `min_exhaustive_patterns` is incomplete
12
15
#![ allow( dead_code, unreachable_code) ]
13
16
#![ deny( unreachable_patterns) ]
14
17
@@ -66,17 +69,17 @@ fn basic(x: NeverBundle) {
66
69
match tuple_half_never { }
67
70
//[normal]~^ ERROR non-empty
68
71
match tuple_half_never {
69
- ( _, _) => { } //[exhaustive_patterns]~ ERROR unreachable pattern
72
+ ( _, _) => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
70
73
}
71
74
72
75
let tuple_never: ( !, !) = x. tuple_never ;
73
76
match tuple_never { }
74
77
//[normal]~^ ERROR non-empty
75
78
match tuple_never {
76
- _ => { } //[exhaustive_patterns]~ ERROR unreachable pattern
79
+ _ => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
77
80
}
78
81
match tuple_never {
79
- ( _, _) => { } //[exhaustive_patterns]~ ERROR unreachable pattern
82
+ ( _, _) => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
80
83
}
81
84
match tuple_never. 0 { }
82
85
match tuple_never. 0 {
@@ -92,12 +95,12 @@ fn basic(x: NeverBundle) {
92
95
}
93
96
match res_u32_never {
94
97
Ok ( _) => { }
95
- Err ( _) => { } //[exhaustive_patterns]~ ERROR unreachable pattern
98
+ Err ( _) => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
96
99
}
97
100
match res_u32_never {
98
101
//~^ ERROR non-exhaustive
99
102
Ok ( 0 ) => { }
100
- Err ( _) => { } //[exhaustive_patterns]~ ERROR unreachable pattern
103
+ Err ( _) => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
101
104
}
102
105
let Ok ( _x) = res_u32_never;
103
106
//[normal]~^ ERROR refutable
@@ -106,25 +109,25 @@ fn basic(x: NeverBundle) {
106
109
// Non-obvious difference: here there's an implicit dereference in the patterns, which makes the
107
110
// inner place !known_valid. `exhaustive_patterns` ignores this.
108
111
let Ok ( _x) = & res_u32_never;
109
- //[normal]~^ ERROR refutable
112
+ //[normal,min_exh_pats ]~^ ERROR refutable
110
113
111
114
let result_never: Result < !, !> = x. result_never ;
112
115
match result_never { }
113
116
//[normal]~^ ERROR non-exhaustive
114
117
match result_never {
115
- _ => { } //[exhaustive_patterns]~ ERROR unreachable pattern
118
+ _ => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
116
119
}
117
120
match result_never {
118
121
//[normal]~^ ERROR non-exhaustive
119
- Ok ( _) => { } //[exhaustive_patterns]~ ERROR unreachable pattern
122
+ Ok ( _) => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
120
123
}
121
124
match result_never {
122
- Ok ( _) => { } //[exhaustive_patterns]~ ERROR unreachable pattern
123
- _ => { } //[exhaustive_patterns]~ ERROR unreachable pattern
125
+ Ok ( _) => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
126
+ _ => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
124
127
}
125
128
match result_never {
126
- Ok ( _) => { } //[exhaustive_patterns]~ ERROR unreachable pattern
127
- Err ( _) => { } //[exhaustive_patterns]~ ERROR unreachable pattern
129
+ Ok ( _) => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
130
+ Err ( _) => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
128
131
}
129
132
}
130
133
@@ -145,11 +148,11 @@ fn void_same_as_never(x: NeverBundle) {
145
148
}
146
149
match opt_void {
147
150
None => { }
148
- Some ( _) => { } //[exhaustive_patterns]~ ERROR unreachable pattern
151
+ Some ( _) => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
149
152
}
150
153
match opt_void {
151
154
None => { }
152
- _ => { } //[exhaustive_patterns]~ ERROR unreachable pattern
155
+ _ => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
153
156
}
154
157
155
158
let ref_void: & Void = & x. void ;
@@ -159,7 +162,7 @@ fn void_same_as_never(x: NeverBundle) {
159
162
}
160
163
let ref_opt_void: & Option < Void > = & None ;
161
164
match * ref_opt_void {
162
- //[normal]~^ ERROR non-exhaustive
165
+ //[normal,min_exh_pats ]~^ ERROR non-exhaustive
163
166
None => { }
164
167
}
165
168
match * ref_opt_void {
@@ -284,11 +287,11 @@ fn nested_validity_tracking(bundle: NeverBundle) {
284
287
_ => { } //~ ERROR unreachable pattern
285
288
}
286
289
match tuple_never {
287
- ( _, _) => { } //[exhaustive_patterns]~ ERROR unreachable pattern
290
+ ( _, _) => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
288
291
}
289
292
match result_never {
290
- Ok ( _) => { } //[exhaustive_patterns]~ ERROR unreachable pattern
291
- Err ( _) => { } //[exhaustive_patterns]~ ERROR unreachable pattern
293
+ Ok ( _) => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
294
+ Err ( _) => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
292
295
}
293
296
294
297
// These should be considered !known_valid and not warn unreachable.
@@ -309,21 +312,21 @@ fn invalid_empty_match(bundle: NeverBundle) {
309
312
match * x { }
310
313
311
314
let x: & ( u32 , !) = & bundle. tuple_half_never ;
312
- match * x { } //[normal]~ ERROR non-exhaustive
315
+ match * x { } //[normal,min_exh_pats ]~ ERROR non-exhaustive
313
316
let x: & ( !, !) = & bundle. tuple_never ;
314
- match * x { } //[normal]~ ERROR non-exhaustive
317
+ match * x { } //[normal,min_exh_pats ]~ ERROR non-exhaustive
315
318
let x: & Result < !, !> = & bundle. result_never ;
316
- match * x { } //[normal]~ ERROR non-exhaustive
319
+ match * x { } //[normal,min_exh_pats ]~ ERROR non-exhaustive
317
320
let x: & [ !; 3 ] = & bundle. array_3_never ;
318
- match * x { } //[normal]~ ERROR non-exhaustive
321
+ match * x { } //[normal,min_exh_pats ]~ ERROR non-exhaustive
319
322
}
320
323
321
324
fn arrays_and_slices ( x : NeverBundle ) {
322
325
let slice_never: & [ !] = & [ ] ;
323
326
match slice_never { }
324
327
//~^ ERROR non-empty
325
328
match slice_never {
326
- //[normal]~^ ERROR not covered
329
+ //[normal,min_exh_pats ]~^ ERROR not covered
327
330
[ ] => { }
328
331
}
329
332
match slice_never {
@@ -332,7 +335,7 @@ fn arrays_and_slices(x: NeverBundle) {
332
335
[ _, _, ..] => { }
333
336
}
334
337
match slice_never {
335
- //[normal]~^ ERROR `&[]`, `&[_]` and `&[_, _]` not covered
338
+ //[normal,min_exh_pats ]~^ ERROR `&[]`, `&[_]` and `&[_, _]` not covered
336
339
//[exhaustive_patterns]~^^ ERROR `&[]` not covered
337
340
[ _, _, _, ..] => { }
338
341
}
@@ -345,7 +348,7 @@ fn arrays_and_slices(x: NeverBundle) {
345
348
_x => { }
346
349
}
347
350
match slice_never {
348
- //[normal]~^ ERROR `&[]` and `&[_, ..]` not covered
351
+ //[normal,min_exh_pats ]~^ ERROR `&[]` and `&[_, ..]` not covered
349
352
//[exhaustive_patterns]~^^ ERROR `&[]` not covered
350
353
& [ ..] if false => { }
351
354
}
@@ -360,13 +363,13 @@ fn arrays_and_slices(x: NeverBundle) {
360
363
match array_3_never { }
361
364
//[normal]~^ ERROR non-empty
362
365
match array_3_never {
363
- _ => { } //[exhaustive_patterns]~ ERROR unreachable pattern
366
+ _ => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
364
367
}
365
368
match array_3_never {
366
- [ _, _, _] => { } //[exhaustive_patterns]~ ERROR unreachable pattern
369
+ [ _, _, _] => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
367
370
}
368
371
match array_3_never {
369
- [ _, ..] => { } //[exhaustive_patterns]~ ERROR unreachable pattern
372
+ [ _, ..] => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
370
373
}
371
374
372
375
let ref_array_3_never: & [ !; 3 ] = & array_3_never;
@@ -408,22 +411,22 @@ fn bindings(x: NeverBundle) {
408
411
match opt_never {
409
412
None => { }
410
413
// !useful, !reachable
411
- Some ( _) => { } //[exhaustive_patterns]~ ERROR unreachable pattern
414
+ Some ( _) => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
412
415
}
413
416
match opt_never {
414
417
None => { }
415
418
// !useful, !reachable
416
- Some ( _a) => { } //[exhaustive_patterns]~ ERROR unreachable pattern
419
+ Some ( _a) => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
417
420
}
418
421
match opt_never {
419
422
None => { }
420
423
// !useful, !reachable
421
- _ => { } //[exhaustive_patterns]~ ERROR unreachable pattern
424
+ _ => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
422
425
}
423
426
match opt_never {
424
427
None => { }
425
428
// !useful, !reachable
426
- _a => { } //[exhaustive_patterns]~ ERROR unreachable pattern
429
+ _a => { } //[exhaustive_patterns,min_exh_pats ]~ ERROR unreachable pattern
427
430
}
428
431
429
432
// The scrutinee is known_valid, but under the `&` isn't anymore.
@@ -444,7 +447,7 @@ fn bindings(x: NeverBundle) {
444
447
& _a => { }
445
448
}
446
449
match ref_opt_never {
447
- //[normal]~^ ERROR non-exhaustive
450
+ //[normal,min_exh_pats ]~^ ERROR non-exhaustive
448
451
& None => { }
449
452
}
450
453
match ref_opt_never {
@@ -485,7 +488,7 @@ fn bindings(x: NeverBundle) {
485
488
ref _a => { }
486
489
}
487
490
match * ref_opt_never {
488
- //[normal]~^ ERROR non-exhaustive
491
+ //[normal,min_exh_pats ]~^ ERROR non-exhaustive
489
492
None => { }
490
493
}
491
494
match * ref_opt_never {
@@ -533,7 +536,7 @@ fn bindings(x: NeverBundle) {
533
536
534
537
let ref_res_never: & Result < !, !> = & x. result_never ;
535
538
match * ref_res_never {
536
- //[normal]~^ ERROR non-exhaustive
539
+ //[normal,min_exh_pats ]~^ ERROR non-exhaustive
537
540
// useful, reachable
538
541
Ok ( _) => { }
539
542
}
@@ -544,7 +547,7 @@ fn bindings(x: NeverBundle) {
544
547
_ => { }
545
548
}
546
549
match * ref_res_never {
547
- //[normal]~^ ERROR non-exhaustive
550
+ //[normal,min_exh_pats ]~^ ERROR non-exhaustive
548
551
// useful, !reachable
549
552
Ok ( _a) => { }
550
553
}
@@ -563,7 +566,7 @@ fn bindings(x: NeverBundle) {
563
566
564
567
let ref_tuple_half_never: & ( u32 , !) = & x. tuple_half_never ;
565
568
match * ref_tuple_half_never { }
566
- //[normal]~^ ERROR non-empty
569
+ //[normal,min_exh_pats ]~^ ERROR non-empty
567
570
match * ref_tuple_half_never {
568
571
// useful, reachable
569
572
( _, _) => { }
@@ -614,6 +617,7 @@ fn guards_and_validity(x: NeverBundle) {
614
617
// useful, reachable
615
618
_ => { }
616
619
}
620
+
617
621
// Now the madness commences. The guard caused a load of the value thus asserting validity. So
618
622
// there's no invalid value for `_` to catch. So the second pattern is unreachable despite the
619
623
// guard not being taken.
@@ -629,7 +633,7 @@ fn guards_and_validity(x: NeverBundle) {
629
633
_a if false => { }
630
634
}
631
635
match ref_never {
632
- //[normal]~^ ERROR non-exhaustive
636
+ //[normal,min_exh_pats ]~^ ERROR non-exhaustive
633
637
// useful, !reachable
634
638
& _a if false => { }
635
639
}
@@ -657,7 +661,7 @@ fn diagnostics_subtlety(x: NeverBundle) {
657
661
// Regression test for diagnostics: don't report `Some(Ok(_))` and `Some(Err(_))`.
658
662
let x: & Option < Result < !, !> > = & None ;
659
663
match * x {
660
- //[normal]~^ ERROR `Some(_)` not covered
664
+ //[normal,min_exh_pats ]~^ ERROR `Some(_)` not covered
661
665
None => { }
662
666
}
663
667
}
0 commit comments