summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/tcfail203.stderr
blob: 29cf84095b0451da3d4d7c1cb0837fe081cc16cc (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

tcfail203.hs:28:11:
    Warning: Pattern bindings containing unlifted types should use an outermost bang pattern:
               (I# x) = 5
    In an equation for `fail2':
        fail2
          = 'a'
          where
              (I# x) = 5

tcfail203.hs:31:11:
    Warning: Pattern bindings containing unlifted types should use an outermost bang pattern:
               (b, I# x) = (True, 5)
    In an equation for `fail3':
        fail3
          = 'a'
          where
              (b, I# x) = (True, 5)

tcfail203.hs:40:11:
    Warning: Pattern bindings containing unlifted types should use an outermost bang pattern:
               (I# !x) = 5
    In an equation for `fail6':
        fail6
          = 'a'
          where
              (I# !x) = 5

tcfail203.hs:43:11:
    Warning: Pattern bindings containing unlifted types should use an outermost bang pattern:
               (b, !(I# x)) = (True, 5)
    In an equation for `fail7':
        fail7
          = 'a'
          where
              (b, !(I# x)) = (True, 5)