1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-27 12:20:04 +08:00
SpaceVim/bundle/nvim-treesitter/tests/indent/c/expr.c
2022-04-14 12:01:23 +08:00

13 lines
181 B
C
Vendored

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);
}