2017-02-07 20:05:30 +00:00
|
|
|
error: Range::step_by(0) produces an infinite iterator. Consider using `std::iter::repeat()` instead
|
2017-05-17 15:51:35 +00:00
|
|
|
--> range.rs:13:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
13 | (0..1).step_by(0);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D range-step-by-zero` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: Range::step_by(0) produces an infinite iterator. Consider using `std::iter::repeat()` instead
|
2017-05-17 15:51:35 +00:00
|
|
|
--> range.rs:17:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
17 | (1..).step_by(0);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
|
= note: `-D range-step-by-zero` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: Range::step_by(0) produces an infinite iterator. Consider using `std::iter::repeat()` instead
|
2017-05-17 15:51:35 +00:00
|
|
|
--> range.rs:18:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
18 | (1...2).step_by(0);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
|
= note: `-D range-step-by-zero` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: Range::step_by(0) produces an infinite iterator. Consider using `std::iter::repeat()` instead
|
2017-05-17 15:51:35 +00:00
|
|
|
--> range.rs:21:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
21 | x.step_by(0);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
|
= note: `-D range-step-by-zero` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: It is more idiomatic to use v1.iter().enumerate()
|
2017-05-17 15:51:35 +00:00
|
|
|
--> range.rs:29:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
29 | let _x = v1.iter().zip(0..v1.len());
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D range-zip-with-len` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-05-26 07:21:54 +00:00
|
|
|
error: aborting due to previous error(s)
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
error: Could not compile `clippy_tests`.
|
|
|
|
|
|
|
|
To learn more, run the command again with --verbose.
|