summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_compile/T2494.stderr
blob: 7f1a2b0ff4fcb1429cc8cabae5377b44b2fd1a2f (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

T2494.hs:15:14:
    Couldn't match type ‛a’ with ‛b’
      ‛a’ is a rigid type variable bound by
          the RULE "foo/foo" at T2494.hs:13:16
      ‛b’ is a rigid type variable bound by
          the RULE "foo/foo" at T2494.hs:14:16
    Expected type: Maybe (m a) -> Maybe (m a)
      Actual type: Maybe (m b) -> Maybe (m b)
    Relevant bindings include
      f :: forall (m :: * -> *). Monad m => Maybe (m a) -> Maybe (m a)
        (bound at T2494.hs:13:11)
      g :: forall (m :: * -> *). Monad m => Maybe (m b) -> Maybe (m b)
        (bound at T2494.hs:14:11)
      x :: Maybe a (bound at T2494.hs:14:65)
    In the first argument of ‛foo’, namely ‛g’
    In the second argument of ‛foo’, namely ‛(foo g x)’

T2494.hs:15:30:
    Couldn't match type ‛a’ with ‛b’
      ‛a’ is a rigid type variable bound by
          the RULE "foo/foo" at T2494.hs:13:16
      ‛b’ is a rigid type variable bound by
          the RULE "foo/foo" at T2494.hs:14:16
    Expected type: Maybe (m a) -> Maybe (m a)
      Actual type: Maybe (m b) -> Maybe (m b)
    Relevant bindings include
      f :: forall (m :: * -> *). Monad m => Maybe (m a) -> Maybe (m a)
        (bound at T2494.hs:13:11)
      g :: forall (m :: * -> *). Monad m => Maybe (m b) -> Maybe (m b)
        (bound at T2494.hs:14:11)
      x :: Maybe a (bound at T2494.hs:14:65)
    In the second argument of ‛(.)’, namely ‛g’
    In the first argument of ‛foo’, namely ‛(f . g)’