mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
69 lines
1.9 KiB
Text
69 lines
1.9 KiB
Text
error: an inclusive range would be more readable
|
|
--> $DIR/range_plus_minus_one.rs:12:14
|
|
|
|
|
12 | for _ in 0..3+1 { }
|
|
| ------
|
|
| |
|
|
| help: use: `0..=3`
|
|
| in this macro invocation
|
|
|
|
|
= note: `-D range-plus-one` implied by `-D warnings`
|
|
|
|
error: an inclusive range would be more readable
|
|
--> $DIR/range_plus_minus_one.rs:15:14
|
|
|
|
|
15 | for _ in 0..1+5 { }
|
|
| ------
|
|
| |
|
|
| help: use: `0..=5`
|
|
| in this macro invocation
|
|
|
|
error: an inclusive range would be more readable
|
|
--> $DIR/range_plus_minus_one.rs:18:14
|
|
|
|
|
18 | for _ in 1..1+1 { }
|
|
| ------
|
|
| |
|
|
| help: use: `1..=1`
|
|
| in this macro invocation
|
|
|
|
error: an inclusive range would be more readable
|
|
--> $DIR/range_plus_minus_one.rs:24:14
|
|
|
|
|
24 | for _ in 0..(1+f()) { }
|
|
| ----------
|
|
| |
|
|
| help: use: `0..=f()`
|
|
| in this macro invocation
|
|
|
|
error: an exclusive range would be more readable
|
|
--> $DIR/range_plus_minus_one.rs:28:13
|
|
|
|
|
28 | let _ = ..=11-1;
|
|
| -------
|
|
| |
|
|
| help: use: `..11`
|
|
| in this macro invocation
|
|
|
|
|
= note: `-D range-minus-one` implied by `-D warnings`
|
|
|
|
error: an exclusive range would be more readable
|
|
--> $DIR/range_plus_minus_one.rs:29:13
|
|
|
|
|
29 | let _ = ..=(11-1);
|
|
| ---------
|
|
| |
|
|
| help: use: `..11`
|
|
| in this macro invocation
|
|
|
|
error: an inclusive range would be more readable
|
|
--> $DIR/range_plus_minus_one.rs:30:13
|
|
|
|
|
30 | let _ = (f()+1)..(f()+1);
|
|
| ----------------
|
|
| |
|
|
| help: use: `(f()+1)..=f()`
|
|
| in this macro invocation
|
|
|
|
error: aborting due to 7 previous errors
|
|
|