blob: c5238bb474f8ba18ebeea0175dd5a7c3b9ddd35e (
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
|
T10438.hs:7:22: warning: [-Wpartial-type-signatures (in -Wdefault)]
• Found type wildcard ‘_’ standing for ‘p2’
Where: ‘p2’ is a rigid type variable bound by
the inferred type of g :: p2 -> p2 at T10438.hs:(6,9)-(8,21)
• In the type signature: x :: _
In an equation for ‘g’:
g r
= x
where
x :: _
x = r
In an equation for ‘foo’:
foo f
= g
where
g r
= x
where
x :: _
x = r
• Relevant bindings include
r :: p2 (bound at T10438.hs:6:11)
g :: p2 -> p2 (bound at T10438.hs:6:9)
f :: p1 (bound at T10438.hs:5:5)
foo :: p1 -> p -> p (bound at T10438.hs:5:1)
|