aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/parser/statement_do_while.good
blob: 547adb1c47617c0ea38db6cc372d1c269a9354d2 (plain)
1
2
3
4
5
6
7
8
9
10
11

() f()
{
    do { int work; } while 10 == 11;

    do {
        do { int work; } while 21 == 22;
    } while 20 == 21;
    
    do { } while 30 == 31;
}