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

7 lines
81 B
C
Raw Normal View History

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