aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/simple.sy
blob: 0f69ae2b65ee26abe46b8481760c6f211bf180f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
a := 0
{
    b := 99999
    {
        a := 99999
        a
    }
    b
    a -= 1
}
a <=> -1