Skip to content

Commit

Permalink
Update ui tests
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Jun 16, 2017
1 parent 16a958b commit faf7bf6
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions clippy_tests/examples/range.stderr
@@ -1,11 +1,3 @@
error: Range::step_by(0) produces an infinite iterator. Consider using `std::iter::repeat()` instead
--> range.rs:13:5
|
13 | (0..1).step_by(0);
| ^^^^^^^^^^^^^^^^^
|
= note: `-D range-step-by-zero` implied by `-D warnings`

error: use of deprecated item: replaced by `Iterator::step_by`
--> range.rs:13:12
|
Expand All @@ -22,14 +14,6 @@ error: use of deprecated item: replaced by `Iterator::step_by`
|
= note: `-D deprecated` implied by `-D warnings`

error: Range::step_by(0) produces an infinite iterator. Consider using `std::iter::repeat()` instead
--> range.rs:17:5
|
17 | (1..).step_by(0);
| ^^^^^^^^^^^^^^^^
|
= note: `-D range-step-by-zero` implied by `-D warnings`

error: use of deprecated item: replaced by `Iterator::step_by`
--> range.rs:17:11
|
Expand All @@ -38,14 +22,6 @@ error: use of deprecated item: replaced by `Iterator::step_by`
|
= note: `-D deprecated` implied by `-D warnings`

error: Range::step_by(0) produces an infinite iterator. Consider using `std::iter::repeat()` instead
--> range.rs:18:5
|
18 | (1...2).step_by(0);
| ^^^^^^^^^^^^^^^^^^
|
= note: `-D range-step-by-zero` implied by `-D warnings`

error: use of deprecated item: replaced by `Iterator::step_by`
--> range.rs:18:13
|
Expand All @@ -54,14 +30,6 @@ error: use of deprecated item: replaced by `Iterator::step_by`
|
= note: `-D deprecated` implied by `-D warnings`

error: Range::step_by(0) produces an infinite iterator. Consider using `std::iter::repeat()` instead
--> range.rs:21:5
|
21 | x.step_by(0);
| ^^^^^^^^^^^^
|
= note: `-D range-step-by-zero` implied by `-D warnings`

error: use of deprecated item: replaced by `Iterator::step_by`
--> range.rs:21:7
|
Expand Down

0 comments on commit faf7bf6

Please sign in to comment.