mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-04 04:20:09 -04:00
11 lines
99 B
C
11 lines
99 B
C
|
|
void foo(int x)
|
||
|
|
{
|
||
|
|
x = x + 1;
|
||
|
|
#if 1
|
||
|
|
x = x + 2;
|
||
|
|
#else
|
||
|
|
x = x + 3;
|
||
|
|
#endif
|
||
|
|
x = x + 4;
|
||
|
|
}
|