summaryrefslogtreecommitdiff
path: root/testsuite/tests/gadt/T3169.stderr
blob: 3a5fc99fb33745eb45489b45e47ca0e8df87f64c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

T3169.hs:13:13: error:
    • Couldn't match type ‘elt’ with ‘Map b elt’
      Expected: Maybe (Map b elt)
        Actual: Maybe elt
      ‘elt’ is a rigid type variable bound by
        the type signature for:
          lookup :: forall elt. (a, b) -> Map (a, b) elt -> Maybe elt
        at T3169.hs:12:3-8
    • In the expression: lookup a m :: Maybe (Map b elt)
      In the expression:
        case lookup a m :: Maybe (Map b elt) of {
          Just (m2 :: Map b elt) -> lookup b m2 :: Maybe elt }
      In an equation for ‘lookup’:
          lookup (a, b) (m :: Map (a, b) elt)
            = case lookup a m :: Maybe (Map b elt) of {
                Just (m2 :: Map b elt) -> lookup b m2 :: Maybe elt }
    • Relevant bindings include
        m :: Map (a, b) elt (bound at T3169.hs:12:17)
        b :: b (bound at T3169.hs:12:13)
        lookup :: (a, b) -> Map (a, b) elt -> Maybe elt
          (bound at T3169.hs:12:3)