summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/tcfail206.stderr
blob: fb812f1cbfbb7a08d83e324c0e502c6e33514c85 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48

tcfail206.hs:5:5:
    Couldn't match expected type `Int' with actual type `Bool'
    Expected type: Bool -> (Int, Bool)
      Actual type: Bool -> (Bool, t0)
    In the expression: (, True)
    In an equation for `a': a = (, True)

tcfail206.hs:8:5:
    Couldn't match expected type `Bool -> (Int, Bool)'
                with actual type `(t0, Int)'
    Expected type: Int -> Bool -> (Int, Bool)
      Actual type: Int -> (t0, Int)
    In the expression: (1,)
    In an equation for `b': b = (1,)

tcfail206.hs:11:5:
    Couldn't match type `a' with `Bool'
      `a' is a rigid type variable bound by
          the type signature for c :: a -> (a, Bool) at tcfail206.hs:11:1
    Expected type: a -> (a, Bool)
      Actual type: Bool -> (Bool, Bool)
    In the expression: (True || False,)
    In an equation for `c': c = (True || False,)

tcfail206.hs:14:5:
    Couldn't match expected type `Int' with actual type `Bool'
    Expected type: Bool -> (# Int, Bool #)
      Actual type: Bool -> (# Bool, t0 #)
    In the expression: (# , True #)
    In an equation for `d': d = (# , True #)

tcfail206.hs:17:5:
    Couldn't match expected type `Bool -> (# Int, Bool #)'
                with actual type `(# t0, Int #)'
    Expected type: Int -> Bool -> (# Int, Bool #)
      Actual type: Int -> (# t0, Int #)
    In the expression: (# 1, #)
    In an equation for `e': e = (# 1, #)

tcfail206.hs:20:5:
    Couldn't match type `a' with `Bool'
      `a' is a rigid type variable bound by
          the type signature for f :: a -> (# a, Bool #) at tcfail206.hs:20:1
    Expected type: a -> (# a, Bool #)
      Actual type: a -> (# a, a #)
    In the expression: (# True || False, #)
    In an equation for `f': f = (# True || False, #)