rust/src/test/ui/for/for-c-in-str.rs
2018-12-25 21:08:33 -07:00

12 lines
360 B
Rust

// E0277 should point exclusively at line 14, not the entire for loop span
fn main() {
for c in "asdf" {
//~^ ERROR `&str` is not an iterator
//~| NOTE `&str` is not an iterator
//~| HELP the trait `std::iter::Iterator` is not implemented for `&str`
//~| NOTE required by `std::iter::IntoIterator::into_iter`
println!("");
}
}