summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values/where04.lc
blob: 651ee2008bc6bce11c541ac8d608a7da134f5a75 (plain)
1
2
3
4
5
6
7
8
9
10
value1 = let x = y where y = () in x

value2 = let x = y
              where y = ()
         in x

value3 = let x = y
              where
              y = ()
         in x