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

T19752.hs:12:10: error:
    • Could not deduce (F b0 ~ a)
      from the context: F b ~ a
        bound by the type signature for:
                   f :: forall b. (F b ~ a) => a
        at T19752.hs:12:10-23
      Expected: forall b. (F b ~ a) => a
        Actual: forall b. (F b ~ a) => a
      ‘a’ is a rigid type variable bound by
        the type signature for:
          g :: forall a. a
        at T19752.hs:9:1-16
    • In the ambiguity check for ‘f’
      To defer the ambiguity check to use sites, enable AllowAmbiguousTypes
      In the type signature: f :: (F b ~ a) => a
      In an equation for ‘g’:
          g = f
            where
                f :: (F b ~ a) => a
                f = undefined
    • Relevant bindings include g :: a (bound at T19752.hs:10:1)