aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/c/preproc_cond.c
blob: b85440aa98e8badeafe09f3266d377b68ef5dc74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
void foo(int x)
{
    x = x + 1;
#if 1
    x = x + 2;
#else
    x = x + 3;
#endif
    x = x + 4;
}