summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values/where01.lc
blob: fe69afad54d6f4285ef213bdbff9e47dc2d2d3cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
value1 = () where x = ()

value2 = x
 where x = ()

value3 = x
 where x = ()
       y = ()

value4 = y
 where
 x = ()
 y = ()

value5 = x
 where
  x = ()
  y = ()

value6 = () where

value7 = ()
 where

value8 = ()


 where

value9 = x


 where
  x = ()
  y = ()

value10 = x
  where
 x = ()
 y = ()

value11 = x where
 x = ()
 y = ()