summaryrefslogtreecommitdiffstats
path: root/src/test/ui/for/for-c-in-str.rs
blob: b086128d28cbc504cb6fc09af663302ba6086891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// E0277 should point exclusively at line 6, 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 `Iterator` is not implemented for `&str`
        //~| NOTE required for `&str` to implement `IntoIterator`
        //~| NOTE in this expansion of desugaring of `for` loop
        //~| NOTE in this expansion of desugaring of `for` loop
        //~| NOTE in this expansion of desugaring of `for` loop
        println!();
    }
}