mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
10 lines
99 B
C
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;
|
|
}
|