rust/tests/ui/match_overlapping_arm.stderr

64 lines
1.4 KiB
Plaintext
Raw Normal View History

error: some ranges overlap
--> $DIR/match_overlapping_arm.rs:11:9
|
LL | 0..=10 => println!("0 ... 10"),
2018-12-10 13:27:19 +08:00
| ^^^^^^
|
= note: `-D clippy::match-overlapping-arm` implied by `-D warnings`
note: overlaps with this
--> $DIR/match_overlapping_arm.rs:12:9
|
LL | 0..=11 => println!("0 ... 11"),
2018-12-10 13:27:19 +08:00
| ^^^^^^
error: some ranges overlap
--> $DIR/match_overlapping_arm.rs:17:9
|
LL | 0..=5 => println!("0 ... 5"),
2018-12-10 13:27:19 +08:00
| ^^^^^
|
note: overlaps with this
--> $DIR/match_overlapping_arm.rs:19:9
|
LL | FOO..=11 => println!("0 ... 11"),
2018-12-10 13:27:19 +08:00
| ^^^^^^^^
error: some ranges overlap
--> $DIR/match_overlapping_arm.rs:25:9
|
LL | 0..=5 => println!("0 ... 5"),
2018-12-10 13:27:19 +08:00
| ^^^^^
|
note: overlaps with this
--> $DIR/match_overlapping_arm.rs:24:9
|
2018-12-27 23:57:55 +08:00
LL | 2 => println!("2"),
| ^
error: some ranges overlap
--> $DIR/match_overlapping_arm.rs:31:9
|
LL | 0..=2 => println!("0 ... 2"),
2018-12-10 13:27:19 +08:00
| ^^^^^
|
note: overlaps with this
--> $DIR/match_overlapping_arm.rs:30:9
|
2018-12-27 23:57:55 +08:00
LL | 2 => println!("2"),
| ^
error: some ranges overlap
--> $DIR/match_overlapping_arm.rs:54:9
|
2018-12-27 23:57:55 +08:00
LL | 0..11 => println!("0 .. 11"),
2018-12-10 13:27:19 +08:00
| ^^^^^
|
note: overlaps with this
--> $DIR/match_overlapping_arm.rs:55:9
|
LL | 0..=11 => println!("0 ... 11"),
2018-12-10 13:27:19 +08:00
| ^^^^^^
error: aborting due to 5 previous errors