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

10 lines
99 B
C

void foo(int x)
{
x = x + 1;
#if 1
x = x + 2;
#else
x = x + 3;
#endif
x = x + 4;
}