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

6 lines
81 B
C

int foo(int x) {
if (x > 10)
return 10;
else
return x;
}