aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/auto/strange.sy
blob: b6aad0f94387d8b4048ffc065d6ed08f2df6b2cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
start :: fn {

    a := 0
    {
        b := 99999
        {
            a := 99999
            a
        }
        b
        a -= 1
    }
    a <=> -1

}