aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/c/no_braces.c
blob: 9cc63989df880770f5629679116963d517423f5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
int foo(int x) {
    if (x > 10)
        return 10;
    else
        return x;

    while (1)
        x++;

    for (int i = 0; i < 3; ++i)
        x--;
}