3 {-# LANGUAGE MagicHash, UnboxedTuples, BangPatterns #-}
16 where !(b
, I
# x
) = (True, 5)
19 where !(# b
, I
# x
#) = (# True, 5 #)
22 where !(# b
, x
#) = (# True, 5# #)
31 where (b
, I
# x
) = (True, 5)
34 where (# b
, I
# x
#) = (# True, 5 #)
37 where (# b
, x
#) = (# True, 5# #)
43 where (b
, !(I
# x
)) = (True, 5)
46 where (# b
, !(I
# x
) #) = (# True, 5 #)
49 where (# b
, !x
#) = (# True, 5# #)
51 -- Now in tcfail203a.hs, because it's an error
53 where !(b, ~(c, (I# x))) = (True, (False, 5))