aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/auto/strange.sy
blob: c495041b99770936939cf1d019d713b737eab6eb (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

}