aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/auto/else_.sy
blob: 896aeb451e0c8be35bdbc046978a85d8c2af5748 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
start :: fn {
a := 1
                res := 0
                if a == 0 {
                  <!>
                } else {
                  res = 1
                }
                res <=> 1
}