summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/iter_not_returning_iterator.stderr
blob: 44f0295583695bfadd40376d53fd383c76ad0872 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error: this method is named `iter` but its return type does not implement `Iterator`
  --> $DIR/iter_not_returning_iterator.rs:30:5
   |
LL |     fn iter(&self) -> Counter2 {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::iter-not-returning-iterator` implied by `-D warnings`

error: this method is named `iter_mut` but its return type does not implement `Iterator`
  --> $DIR/iter_not_returning_iterator.rs:34:5
   |
LL |     fn iter_mut(&self) -> Counter2 {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: this method is named `iter` but its return type does not implement `Iterator`
  --> $DIR/iter_not_returning_iterator.rs:50:5
   |
LL |     fn iter(&self) -> Self::I;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 3 previous errors