summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values/shadowing01.lc
blob: e4f277d9eec78e96e8a15cd829409e1f0799012c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
value =
  let x = 'A'
      y = "hello"
      c = let
            x = 1
            y = 2.12
            c = let x = ()
                    y = 'C'
                    c = 3.12
                in "world"
          in ()
  in '7'