summaryrefslogtreecommitdiff
path: root/tiger-compiler/tests/good/test37.tig
blob: 49600ecf09dc5644288b4dd9bb146dd60a54a5e3 (plain)
1
2
3
4
5
6
7
8
/* redeclaration of variable; this is legal, there are two different
   variables with the same name.  The second one hides the first.  */
let
        var a := 0
        var a := " "
in
        0
end