blob: 12193e115b41a4956d19c55624af93ae2649209b (
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
|
Linear17.hs:17:3: error:
• Couldn't match type ‘'Many’ with ‘'One’
arising from multiplicity of ‘x’
• In a stmt of a 'do' block: x <- ()
In the expression:
do x <- ()
(y, z) <- ((), ())
() <- y
() <- z
....
In an equation for ‘incorrectDo1’:
incorrectDo1
= do x <- ()
(y, z) <- ((), ())
() <- y
....
Linear17.hs:25:6: error:
• Couldn't match type ‘'Many’ with ‘'One’
arising from multiplicity of ‘z’
• In the pattern: (y, z)
In a stmt of a 'do' block: (y, z) <- ((), x)
In the expression:
do x <- ()
(y, z) <- ((), x)
() <- y
()
Linear17.hs:30:3: error:
• Couldn't match type ‘'Many’ with ‘'One’
arising from multiplicity of ‘x’
• In a stmt of a 'do' block: x <- ()
In the expression:
do x <- ()
(y, z) <- (x, x)
() <- y
() <- z
....
In an equation for ‘incorrectDo3’:
incorrectDo3
= do x <- ()
(y, z) <- (x, x)
() <- y
....
|