nvim-treesitter/tests/indent/c/no_braces.c
2023-01-14 04:52:21 -08:00

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--;
}