]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-41880.stderr
drive-by: Fix path spans
[rust.git] / src / test / ui / issues / issue-41880.stderr
1 error[E0599]: no method named `iter` found for struct `Iterate` in the current scope
2   --> $DIR/issue-41880.rs:27:24
3    |
4 LL | pub struct Iterate<T, F> {
5    | ------------------------ method `iter` not found for this struct
6 ...
7 LL |     println!("{:?}", a.iter().take(10).collect::<Vec<usize>>());
8    |                        ^^^^ method not found in `Iterate<{integer}, [closure@$DIR/issue-41880.rs:26:24: 26:27]>`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0599`.