rust-clippy/tests/ui/for_loop_fixable.stderr

153 lines
5.8 KiB
Text
Raw Normal View History

error: this range is empty so this for loop will never run
--> $DIR/for_loop_fixable.rs:39:14
2018-12-27 15:57:55 +00:00
|
LL | for i in 10..0 {
| ^^^^^
|
= note: `-D clippy::reverse-range-loop` implied by `-D warnings`
help: consider using the following if you are attempting to iterate over this range in reverse
2018-12-27 15:57:55 +00:00
|
LL | for i in (0..10).rev() {
| ^^^^^^^^^^^^^
error: this range is empty so this for loop will never run
--> $DIR/for_loop_fixable.rs:43:14
2018-12-27 15:57:55 +00:00
|
LL | for i in 10..=0 {
| ^^^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using the following if you are attempting to iterate over this range in reverse
2018-12-27 15:57:55 +00:00
|
LL | for i in (0..=10).rev() {
2018-12-27 15:57:55 +00:00
| ^^^^^^^^^^^^^^
error: this range is empty so this for loop will never run
--> $DIR/for_loop_fixable.rs:47:14
2018-12-27 15:57:55 +00:00
|
LL | for i in MAX_LEN..0 {
| ^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using the following if you are attempting to iterate over this range in reverse
2018-12-27 15:57:55 +00:00
|
LL | for i in (0..MAX_LEN).rev() {
| ^^^^^^^^^^^^^^^^^^
error: this range is empty so this for loop will never run
--> $DIR/for_loop_fixable.rs:72:14
2018-12-27 15:57:55 +00:00
|
LL | for i in 10..5 + 4 {
| ^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using the following if you are attempting to iterate over this range in reverse
2018-12-27 15:57:55 +00:00
|
LL | for i in (5 + 4..10).rev() {
| ^^^^^^^^^^^^^^^^^
error: this range is empty so this for loop will never run
--> $DIR/for_loop_fixable.rs:76:14
2018-12-27 15:57:55 +00:00
|
LL | for i in (5 + 2)..(3 - 1) {
| ^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: consider using the following if you are attempting to iterate over this range in reverse
2018-12-27 15:57:55 +00:00
|
LL | for i in ((3 - 1)..(5 + 2)).rev() {
| ^^^^^^^^^^^^^^^^^^^^^^^^
error: it is more concise to loop over references to containers instead of using explicit iteration methods
--> $DIR/for_loop_fixable.rs:98:15
2018-12-27 15:57:55 +00:00
|
LL | for _v in vec.iter() {}
| ^^^^^^^^^^ help: to write this more concisely, try: `&vec`
2018-12-27 15:57:55 +00:00
|
= note: `-D clippy::explicit-iter-loop` implied by `-D warnings`
error: it is more concise to loop over references to containers instead of using explicit iteration methods
--> $DIR/for_loop_fixable.rs:100:15
2018-12-27 15:57:55 +00:00
|
LL | for _v in vec.iter_mut() {}
| ^^^^^^^^^^^^^^ help: to write this more concisely, try: `&mut vec`
error: it is more concise to loop over containers instead of using explicit iteration methods`
--> $DIR/for_loop_fixable.rs:103:15
2018-12-27 15:57:55 +00:00
|
LL | for _v in out_vec.into_iter() {}
| ^^^^^^^^^^^^^^^^^^^ help: to write this more concisely, try: `out_vec`
2018-12-27 15:57:55 +00:00
|
= note: `-D clippy::explicit-into-iter-loop` implied by `-D warnings`
error: it is more concise to loop over references to containers instead of using explicit iteration methods
--> $DIR/for_loop_fixable.rs:108:15
2018-12-27 15:57:55 +00:00
|
LL | for _v in [1, 2, 3].iter() {}
| ^^^^^^^^^^^^^^^^ help: to write this more concisely, try: `&[1, 2, 3]`
error: it is more concise to loop over references to containers instead of using explicit iteration methods
--> $DIR/for_loop_fixable.rs:112:15
2018-12-27 15:57:55 +00:00
|
LL | for _v in [0; 32].iter() {}
| ^^^^^^^^^^^^^^ help: to write this more concisely, try: `&[0; 32]`
error: it is more concise to loop over references to containers instead of using explicit iteration methods
--> $DIR/for_loop_fixable.rs:117:15
2018-12-27 15:57:55 +00:00
|
LL | for _v in ll.iter() {}
| ^^^^^^^^^ help: to write this more concisely, try: `&ll`
error: it is more concise to loop over references to containers instead of using explicit iteration methods
--> $DIR/for_loop_fixable.rs:120:15
2018-12-27 15:57:55 +00:00
|
LL | for _v in vd.iter() {}
| ^^^^^^^^^ help: to write this more concisely, try: `&vd`
error: it is more concise to loop over references to containers instead of using explicit iteration methods
--> $DIR/for_loop_fixable.rs:123:15
2018-12-27 15:57:55 +00:00
|
LL | for _v in bh.iter() {}
| ^^^^^^^^^ help: to write this more concisely, try: `&bh`
error: it is more concise to loop over references to containers instead of using explicit iteration methods
--> $DIR/for_loop_fixable.rs:126:15
2018-12-27 15:57:55 +00:00
|
LL | for _v in hm.iter() {}
| ^^^^^^^^^ help: to write this more concisely, try: `&hm`
error: it is more concise to loop over references to containers instead of using explicit iteration methods
--> $DIR/for_loop_fixable.rs:129:15
2018-12-27 15:57:55 +00:00
|
LL | for _v in bt.iter() {}
| ^^^^^^^^^ help: to write this more concisely, try: `&bt`
error: it is more concise to loop over references to containers instead of using explicit iteration methods
--> $DIR/for_loop_fixable.rs:132:15
2018-12-27 15:57:55 +00:00
|
LL | for _v in hs.iter() {}
| ^^^^^^^^^ help: to write this more concisely, try: `&hs`
error: it is more concise to loop over references to containers instead of using explicit iteration methods
--> $DIR/for_loop_fixable.rs:135:15
2018-12-27 15:57:55 +00:00
|
LL | for _v in bs.iter() {}
| ^^^^^^^^^ help: to write this more concisely, try: `&bs`
error: it is more concise to loop over containers instead of using explicit iteration methods`
--> $DIR/for_loop_fixable.rs:310:18
|
LL | for i in iterator.into_iter() {
| ^^^^^^^^^^^^^^^^^^^^ help: to write this more concisely, try: `iterator`
error: it is more concise to loop over references to containers instead of using explicit iteration methods
--> $DIR/for_loop_fixable.rs:330:18
|
LL | for _ in t.into_iter() {}
| ^^^^^^^^^^^^^ help: to write this more concisely, try: `&t`
error: it is more concise to loop over containers instead of using explicit iteration methods`
--> $DIR/for_loop_fixable.rs:332:18
|
LL | for _ in r.into_iter() {}
| ^^^^^^^^^^^^^ help: to write this more concisely, try: `r`
error: aborting due to 20 previous errors
2018-01-16 16:06:27 +00:00