summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/explicit_into_iter_loop.stderr
blob: c03647ab43367845374ceb5e92529ca9fc159252 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
error: it is more concise to loop over containers instead of using explicit iteration methods
  --> $DIR/explicit_into_iter_loop.rs:9:18
   |
LL |         for _ in iterator.into_iter() {}
   |                  ^^^^^^^^^^^^^^^^^^^^ help: to write this more concisely, try: `iterator`
   |
   = note: `-D clippy::explicit-into-iter-loop` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::explicit_into_iter_loop)]`

error: it is more concise to loop over containers instead of using explicit iteration methods
  --> $DIR/explicit_into_iter_loop.rs:22:14
   |
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/explicit_into_iter_loop.rs:25:14
   |
LL |     for _ in r.into_iter() {}
   |              ^^^^^^^^^^^^^ help: to write this more concisely, try: `r`

error: it is more concise to loop over containers instead of using explicit iteration methods
  --> $DIR/explicit_into_iter_loop.rs:33:14
   |
LL |     for _ in mr.into_iter() {}
   |              ^^^^^^^^^^^^^^ help: to write this more concisely, try: `&*mr`

error: it is more concise to loop over containers instead of using explicit iteration methods
  --> $DIR/explicit_into_iter_loop.rs:45:14
   |
LL |     for _ in u.into_iter() {}
   |              ^^^^^^^^^^^^^ help: to write this more concisely, try: `&mut u`

error: it is more concise to loop over containers instead of using explicit iteration methods
  --> $DIR/explicit_into_iter_loop.rs:48:14
   |
LL |     for _ in mr.into_iter() {}
   |              ^^^^^^^^^^^^^^ help: to write this more concisely, try: `&mut *mr`

error: aborting due to 6 previous errors