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

13 lines
181 B
C
Raw Normal View History

2021-04-17 22:47:02 +02: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);
}