]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-41880.stderr
New upstream version 1.60.0+dfsg1
[rustc.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
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:31]>`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0599`.