summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/T5300.stderr
blob: 06d870dff395e0bd9ca8bf5b5209a82b79e1b493 (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

T5300.hs:12:7: error:
    • Could not deduce (C1 a b c0)
      from the context: (Monad m, C1 a b c)
        bound by the type signature for:
                   f1 :: forall (m :: * -> *) a b c.
                         (Monad m, C1 a b c) =>
                         a -> StateT (T b) m a
        at T5300.hs:12:7-50
      The type variable ‘c0’ is ambiguous
    • In the ambiguity check for ‘f1’
      To defer the ambiguity check to use sites, enable AllowAmbiguousTypes
      In the type signature:
        f1 :: (Monad m, C1 a b c) => a -> StateT (T b) m a

T5300.hs:15:7: error:
    • Could not deduce (C1 a1 b1 c10)
      from the context: (Monad m, C1 a1 b1 c1, C2 a2 b2 c2)
        bound by the type signature for:
                   f2 :: forall (m :: * -> *) a1 b1 c1 a2 b2 c2.
                         (Monad m, C1 a1 b1 c1, C2 a2 b2 c2) =>
                         a1 -> StateT (T b2) m a2
        at T5300.hs:15:7-69
      The type variable ‘c10’ is ambiguous
    • In the ambiguity check for ‘f2’
      To defer the ambiguity check to use sites, enable AllowAmbiguousTypes
      In the type signature:
        f2 :: (Monad m, C1 a1 b1 c1, C2 a2 b2 c2) =>
              a1 -> StateT (T b2) m a2