summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/tcfail122.stderr
blob: 39507bdbeb4b6bcca2a7ce42ade838eae7253b70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

tcfail122.hs:8:9: error:
    • Couldn't match kind ‘*’ with ‘* -> *’
      When matching types
        c0 :: (* -> *) -> *
        a :: * -> *
      Expected: a b
        Actual: c0 d0
    • In the expression:
          undefined :: forall (c :: (* -> *) -> *) (d :: * -> *). c d
      In the expression:
        [undefined :: forall a b. a b,
         undefined :: forall (c :: (* -> *) -> *) (d :: * -> *). c d]
      In an equation for ‘foo’:
          foo
            = [undefined :: forall a b. a b,
               undefined :: forall (c :: (* -> *) -> *) (d :: * -> *). c d]
    • Relevant bindings include
        foo :: [a b] (bound at tcfail122.hs:7:1)