mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
16 lines
190 B
C
16 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);
|
|
}
|