rust/src/test/ui/for/for-loop-bogosity.stderr

13 lines
417 B
Plaintext
Raw Normal View History

error[E0277]: `MyStruct` is not an iterator
2018-12-25 09:56:47 -06:00
--> $DIR/for-loop-bogosity.rs:17:14
2018-08-08 07:28:26 -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`.