mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
100 lines
2.4 KiB
Text
100 lines
2.4 KiB
Text
error: some ranges overlap
|
|
--> tests/ui/match_overlapping_arm.rs:11:9
|
|
|
|
|
LL | 0..=10 => println!("0..=10"),
|
|
| ^^^^^^
|
|
|
|
|
note: overlaps with this
|
|
--> tests/ui/match_overlapping_arm.rs:13:9
|
|
|
|
|
LL | 0..=11 => println!("0..=11"),
|
|
| ^^^^^^
|
|
= note: `-D clippy::match-overlapping-arm` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::match_overlapping_arm)]`
|
|
|
|
error: some ranges overlap
|
|
--> tests/ui/match_overlapping_arm.rs:18:9
|
|
|
|
|
LL | 0..=5 => println!("0..=5"),
|
|
| ^^^^^
|
|
|
|
|
note: overlaps with this
|
|
--> tests/ui/match_overlapping_arm.rs:21:9
|
|
|
|
|
LL | FOO..=11 => println!("FOO..=11"),
|
|
| ^^^^^^^^
|
|
|
|
error: some ranges overlap
|
|
--> tests/ui/match_overlapping_arm.rs:56:9
|
|
|
|
|
LL | 0..11 => println!("0..11"),
|
|
| ^^^^^
|
|
|
|
|
note: overlaps with this
|
|
--> tests/ui/match_overlapping_arm.rs:58:9
|
|
|
|
|
LL | 0..=11 => println!("0..=11"),
|
|
| ^^^^^^
|
|
|
|
error: some ranges overlap
|
|
--> tests/ui/match_overlapping_arm.rs:82:9
|
|
|
|
|
LL | 0..=10 => println!("0..=10"),
|
|
| ^^^^^^
|
|
|
|
|
note: overlaps with this
|
|
--> tests/ui/match_overlapping_arm.rs:81:9
|
|
|
|
|
LL | 5..14 => println!("5..14"),
|
|
| ^^^^^
|
|
|
|
error: some ranges overlap
|
|
--> tests/ui/match_overlapping_arm.rs:88:9
|
|
|
|
|
LL | 0..7 => println!("0..7"),
|
|
| ^^^^
|
|
|
|
|
note: overlaps with this
|
|
--> tests/ui/match_overlapping_arm.rs:90:9
|
|
|
|
|
LL | 0..=10 => println!("0..=10"),
|
|
| ^^^^^^
|
|
|
|
error: some ranges overlap
|
|
--> tests/ui/match_overlapping_arm.rs:101:9
|
|
|
|
|
LL | ..=23 => println!("..=23"),
|
|
| ^^^^^
|
|
|
|
|
note: overlaps with this
|
|
--> tests/ui/match_overlapping_arm.rs:103:9
|
|
|
|
|
LL | ..26 => println!("..26"),
|
|
| ^^^^
|
|
|
|
error: some ranges overlap
|
|
--> tests/ui/match_overlapping_arm.rs:111:9
|
|
|
|
|
LL | 21..=30 => (),
|
|
| ^^^^^^^
|
|
|
|
|
note: overlaps with this
|
|
--> tests/ui/match_overlapping_arm.rs:113:9
|
|
|
|
|
LL | 21..=40 => (),
|
|
| ^^^^^^^
|
|
|
|
error: some ranges overlap
|
|
--> tests/ui/match_overlapping_arm.rs:126:9
|
|
|
|
|
LL | 0..=0x0000_0000_0000_00ff => (),
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
note: overlaps with this
|
|
--> tests/ui/match_overlapping_arm.rs:128:9
|
|
|
|
|
LL | 0..=0x0000_0000_0000_ffff => (),
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 8 previous errors
|
|
|