64 lines
1.5 KiB
Plaintext
64 lines
1.5 KiB
Plaintext
|
error: some ranges overlap
|
||
|
--> $DIR/match_overlapping_arm.rs:20:9
|
||
|
|
|
||
|
20 | 0 ... 10 => println!("0 ... 10"),
|
||
|
| ^^^^^^^^
|
||
|
|
|
||
|
= note: `-D clippy::match-overlapping-arm` implied by `-D warnings`
|
||
|
note: overlaps with this
|
||
|
--> $DIR/match_overlapping_arm.rs:21:9
|
||
|
|
|
||
|
21 | 0 ... 11 => println!("0 ... 11"),
|
||
|
| ^^^^^^^^
|
||
|
|
||
|
error: some ranges overlap
|
||
|
--> $DIR/match_overlapping_arm.rs:26:9
|
||
|
|
|
||
|
26 | 0 ... 5 => println!("0 ... 5"),
|
||
|
| ^^^^^^^
|
||
|
|
|
||
|
note: overlaps with this
|
||
|
--> $DIR/match_overlapping_arm.rs:28:9
|
||
|
|
|
||
|
28 | FOO ... 11 => println!("0 ... 11"),
|
||
|
| ^^^^^^^^^^
|
||
|
|
||
|
error: some ranges overlap
|
||
|
--> $DIR/match_overlapping_arm.rs:34:9
|
||
|
|
|
||
|
34 | 0 ... 5 => println!("0 ... 5"),
|
||
|
| ^^^^^^^
|
||
|
|
|
||
|
note: overlaps with this
|
||
|
--> $DIR/match_overlapping_arm.rs:33:9
|
||
|
|
|
||
|
33 | 2 => println!("2"),
|
||
|
| ^
|
||
|
|
||
|
error: some ranges overlap
|
||
|
--> $DIR/match_overlapping_arm.rs:40:9
|
||
|
|
|
||
|
40 | 0 ... 2 => println!("0 ... 2"),
|
||
|
| ^^^^^^^
|
||
|
|
|
||
|
note: overlaps with this
|
||
|
--> $DIR/match_overlapping_arm.rs:39:9
|
||
|
|
|
||
|
39 | 2 => println!("2"),
|
||
|
| ^
|
||
|
|
||
|
error: some ranges overlap
|
||
|
--> $DIR/match_overlapping_arm.rs:63:9
|
||
|
|
|
||
|
63 | 0 .. 11 => println!("0 .. 11"),
|
||
|
| ^^^^^^^
|
||
|
|
|
||
|
note: overlaps with this
|
||
|
--> $DIR/match_overlapping_arm.rs:64:9
|
||
|
|
|
||
|
64 | 0 ... 11 => println!("0 ... 11"),
|
||
|
| ^^^^^^^^
|
||
|
|
||
|
error: aborting due to 5 previous errors
|
||
|
|