blob: 5b70aea4d784408051133f7ae95423a1b1b84993 (
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
|
T12709.hs:28:13: error:
• The function argument
‘1’
does not have a fixed runtime representation:
a :: TYPE rep
• In the first argument of ‘(+)’, namely ‘1’
In the first argument of ‘(+)’, namely ‘1 + 2’
In the first argument of ‘(+)’, namely ‘1 + 2 + 3’
T12709.hs:28:17: error:
• The function argument
‘2’
does not have a fixed runtime representation:
a :: TYPE rep
• In the second argument of ‘(+)’, namely ‘2’
In the first argument of ‘(+)’, namely ‘1 + 2’
In the first argument of ‘(+)’, namely ‘1 + 2 + 3’
T12709.hs:28:21: error:
• The function argument
‘3’
does not have a fixed runtime representation:
a :: TYPE rep
• In the second argument of ‘(+)’, namely ‘3’
In the first argument of ‘(+)’, namely ‘1 + 2 + 3’
In the expression: 1 + 2 + 3 + 4
T12709.hs:28:25: error:
• The function argument
‘4’
does not have a fixed runtime representation:
a :: TYPE rep
• In the second argument of ‘(+)’, namely ‘4’
In the expression: 1 + 2 + 3 + 4
In an equation for ‘u’: u = 1 + 2 + 3 + 4
|