mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
17 lines
190 B
C
17 lines
190 B
C
|
|
void foo(int x)
|
||
|
|
{
|
||
|
|
while (x > 0) {
|
||
|
|
x--;
|
||
|
|
continue;
|
||
|
|
}
|
||
|
|
|
||
|
|
for (int i = 0; i < 5; ++i) {
|
||
|
|
x++;
|
||
|
|
break;
|
||
|
|
}
|
||
|
|
|
||
|
|
do {
|
||
|
|
x++;
|
||
|
|
} while (x < 0);
|
||
|
|
}
|