blob: a5cb42f58ac11e3fe5b3b275a4483ad3562cbf1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<interactive>:3:5:
You can't mix polymorphic and unlifted bindings
a = (# 1 #)
Probable fix: use a bang pattern
<interactive>:4:5:
You can't mix polymorphic and unlifted bindings
a = (# 1, 3 #)
Probable fix: use a bang pattern
Top level:
GHCi can't bind a variable of unlifted type:
a :: (# Integer, Integer #)
|