summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/tcfail042.stderr
blob: 8180853c88350f112ae9a5541c8dc05e540d67d0 (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

tcfail042.hs:15:10:
    Could not deduce (Num a)
      arising from the superclasses of an instance declaration
    from the context: (Eq a, Show a)
      bound by the instance declaration at tcfail042.hs:15:10-34
    Possible fix:
      add (Num a) to the context of the instance declaration
    In the instance declaration for ‘Bar [a]’

tcfail042.hs:17:18:
    Could not deduce (Num a) arising from a use of ‘foo’
    from the context: (Eq a, Show a)
      bound by the instance declaration at tcfail042.hs:15:10-34
    Possible fix:
      add (Num a) to the context of the instance declaration
    In the expression: foo xs
    In an equation for ‘bar’:
        bar (x : xs)
          = foo xs
          where
              u = x == x
              v = show x
    In the instance declaration for ‘Bar [a]’