aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/parser/statement_while.good
blob: b1ab9bf498eba4520a484cb36f2d41a142c56681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

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

    while 20 == 21 {
        while 21 == 22 { int work; }
    }
    
    while 30 == 31 break;
    while 40 == 41 { while 41 == 42 break; }
    
    while 50 == 51 { }
}