rust/tests/ui/range_plus_minus_one.stderr
2017-10-08 14:15:37 +02:00

67 lines
1.8 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