mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
13 lines
156 B
C
13 lines
156 B
C
int foo(int x) {
|
|
if (x > 10)
|
|
return 10;
|
|
else
|
|
return x;
|
|
|
|
while (1)
|
|
x++;
|
|
|
|
for (int i = 0; i < 3; ++i)
|
|
x--;
|
|
}
|
|
|