2018-10-09 20:53:53 -05:00
|
|
|
error[E0277]: `MyStruct` is not an iterator
|
2018-08-08 07:28:26 -05:00
|
|
|
--> $DIR/for-loop-bogosity.rs:27:14
|
|
|
|
|
|
2018-10-09 20:53:53 -05:00
|
|
|
LL | for x in bogus {
|
|
|
|
| ^^^^^ `MyStruct` is not an iterator
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
= help: the trait `std::iter::Iterator` is not implemented for `MyStruct`
|
|
|
|
= note: required by `std::iter::IntoIterator::into_iter`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|