summaryrefslogtreecommitdiff
path: root/tests/auto/cplusplus/cxx11/data/rangeFor.1.cpp
blob: 3a9a2e7d4f5a006cb80fa4eab5d2bdb3716ff31d (plain)
1
2
3
4
5
int main() {
    for (int x : {1, 2, 3}) {}
    for (int x : foo) ;
    for (int& x : array) x += 2;
}