spacevim/bundle/nvim-treesitter-0.9.1/tests/indent/c/expr.c

13 lines
181 B
C
Raw Normal View History

2024-08-21 14:17:26 +08:00
void foo(int x, int y)
{
if ((x*x - y*y > 0) ||
(x == 1 || y == 1) &&
(x != 2 && y != 2)
) {
return;
}
int z = (x + y) *
(x - y);
}