forked from qt-creator/qt-creator
6 lines
103 B
C++
6 lines
103 B
C++
![]() |
int main() {
|
||
|
for (int x : {1, 2, 3}) {}
|
||
|
for (int x : foo) ;
|
||
|
for (int& x : array) x += 2;
|
||
|
}
|