summaryrefslogtreecommitdiff
path: root/testsuite/tests/partial-sigs/should_compile/T13482.stderr
blob: a21b7dcac48b202c862b30b2c93338e49a46ab91 (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

T13482.hs:10:32: warning: [-Wpartial-type-signatures (in -Wdefault)]
    • Found type wildcard ‘_’ standing for ‘(Eq m, Monoid m)’
      Where: ‘m’ is a rigid type variable bound by
               the inferred type of
                 minimal1_noksig :: (Eq m, Monoid m) => Int -> Bool
               at T13482.hs:11:1-50
    • In the type signature:
        minimal1_noksig :: forall m. _ => Int -> Bool

T13482.hs:13:33: warning: [-Wpartial-type-signatures (in -Wdefault)]
    • Found type wildcard ‘_’ standing for ‘(Eq m, Monoid m)’
      Where: ‘m’ is a rigid type variable bound by
               the inferred type of minimal1 :: (Eq m, Monoid m) => Bool
               at T13482.hs:14:1-41
    • In the type signature: minimal1 :: forall (m :: Type). _ => Bool

T13482.hs:16:30: warning: [-Wpartial-type-signatures (in -Wdefault)]
    • Found type wildcard ‘_’ standing for ‘Monoid m’
      Where: ‘m’ is a rigid type variable bound by
               the inferred type of minimal2 :: (Eq m, Monoid m) => Bool
               at T13482.hs:17:1-41
    • In the type signature: minimal2 :: forall m. (Eq m, _) => Bool

T13482.hs:19:34: warning: [-Wpartial-type-signatures (in -Wdefault)]
    • Found type wildcard ‘_’ standing for ‘Eq m’
      Where: ‘m’ is a rigid type variable bound by
               the inferred type of minimal3 :: (Monoid m, Eq m) => Bool
               at T13482.hs:20:1-41
    • In the type signature:
        minimal3 :: forall m. (Monoid m, _) => Bool