nvim-treesitter/lua/tests/indent/c/no_braces.c
2021-04-23 21:21:38 +02:00

12 lines
155 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--;
}