aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/c/cond.c
blob: 1ecb22d9892ae32ac51cdc8b844f3606c56308de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
void foo(int x)
{
    if (x > 10) {
        return;
    } else if (x < -10) {
        x = -10;
    } else {
        x = -x;
    }
}