summaryrefslogtreecommitdiffstats
path: root/src/test/ui/hygiene/for-loop.rs
blob: 2e5ae43a9ce47711bb546b00ea6be20df825f7fb (plain)
1
2
3
4
5
6
7
8
// for-loops are expanded in the front end, and use an `iter` ident in their expansion. Check that
// `iter` is not accessible inside the for loop.

fn main() {
    for _ in 0..10 {
        iter.next();  //~ ERROR cannot find value `iter` in this scope
    }
}