nvim-treesitter/tests/indent/c/no_braces.c

14 lines
156 B
C
Raw Normal View History

int foo(int x) {
if (x > 10)
return 10;
else
return x;
2021-04-17 22:47:02 +02:00
while (1)
x++;
for (int i = 0; i < 3; ++i)
x--;
}
2023-01-10 14:04:27 +09:00