rust/tests/ui/match_overlapping_arm.stderr

64 lines
1.4 KiB
Text
Raw Normal View History

error: some ranges overlap
2020-01-11 11:39:43 +01:00
--> $DIR/match_overlapping_arm.rs:12:9
|
LL | 0..=10 => println!("0 ... 10"),
2018-12-10 06:27:19 +01:00
| ^^^^^^
|
= note: `-D clippy::match-overlapping-arm` implied by `-D warnings`
note: overlaps with this
2020-01-11 11:39:43 +01:00
--> $DIR/match_overlapping_arm.rs:13:9
|
LL | 0..=11 => println!("0 ... 11"),
2018-12-10 06:27:19 +01:00
| ^^^^^^
error: some ranges overlap
2020-01-11 11:39:43 +01:00
--> $DIR/match_overlapping_arm.rs:18:9
|
LL | 0..=5 => println!("0 ... 5"),
2018-12-10 06:27:19 +01:00
| ^^^^^
|
note: overlaps with this
2020-01-11 11:39:43 +01:00
--> $DIR/match_overlapping_arm.rs:20:9
|
LL | FOO..=11 => println!("0 ... 11"),
2018-12-10 06:27:19 +01:00
| ^^^^^^^^
error: some ranges overlap
2020-01-11 11:39:43 +01:00
--> $DIR/match_overlapping_arm.rs:26:9
|
LL | 0..=5 => println!("0 ... 5"),
2018-12-10 06:27:19 +01:00
| ^^^^^
|
note: overlaps with this
2020-01-11 11:39:43 +01:00
--> $DIR/match_overlapping_arm.rs:25:9
|
2018-12-27 16:57:55 +01:00
LL | 2 => println!("2"),
| ^
error: some ranges overlap
2020-01-11 11:39:43 +01:00
--> $DIR/match_overlapping_arm.rs:32:9
|
LL | 0..=2 => println!("0 ... 2"),
2018-12-10 06:27:19 +01:00
| ^^^^^
|
note: overlaps with this
2020-01-11 11:39:43 +01:00
--> $DIR/match_overlapping_arm.rs:31:9
|
2018-12-27 16:57:55 +01:00
LL | 2 => println!("2"),
| ^
error: some ranges overlap
2020-01-11 11:39:43 +01:00
--> $DIR/match_overlapping_arm.rs:55:9
|
2018-12-27 16:57:55 +01:00
LL | 0..11 => println!("0 .. 11"),
2018-12-10 06:27:19 +01:00
| ^^^^^
|
note: overlaps with this
2020-01-11 11:39:43 +01:00
--> $DIR/match_overlapping_arm.rs:56:9
|
LL | 0..=11 => println!("0 ... 11"),
2018-12-10 06:27:19 +01:00
| ^^^^^^
2020-01-11 19:05:47 +01:00
error: aborting due to 5 previous errors