2020-09-02 07:40:56 +00:00
|
|
|
error[E0277]: `String` is not an iterator
|
2018-10-10 02:01:17 +00:00
|
|
|
--> $DIR/string.rs:2:14
|
|
|
|
|
|
|
|
|
LL | for _ in "".to_owned() {}
|
2021-03-12 10:48:05 +00:00
|
|
|
| ^^^^^^^^^^^^^ `String` is not an iterator; try calling `.chars()` or `.bytes()`
|
2018-10-10 02:01:17 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Iterator` is not implemented for `String`
|
2022-08-15 20:31:37 +00:00
|
|
|
= note: required for `String` to implement `IntoIterator`
|
2018-10-10 02:01:17 +00:00
|
|
|
|
|
|
|
error[E0277]: `&str` is not an iterator
|
|
|
|
--> $DIR/string.rs:4:14
|
|
|
|
|
|
|
|
|
LL | for _ in "" {}
|
|
|
|
| ^^ `&str` is not an iterator; try calling `.chars()` or `.bytes()`
|
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Iterator` is not implemented for `&str`
|
2022-08-15 20:31:37 +00:00
|
|
|
= note: required for `&str` to implement `IntoIterator`
|
2018-10-10 02:01:17 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|