aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/c/ternary.c
blob: 2e40b382e9e164fae64a389cc5180f84fe14797f (plain) (blame)
1
2
3
4
5
6
void foo(int x)
{
    int y = (x > 10) ? 10
        : (x < -10) ? -10
        : x;
}