nvim-treesitter/tests/indent/c/preproc_cond.c

11 lines
99 B
C
Raw Normal View History

2021-04-17 22:47:02 +02:00
void foo(int x)
{
x = x + 1;
#if 1
x = x + 2;
#else
x = x + 3;
#endif
x = x + 4;
}