summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_run/tcrun022.hs
blob: 54613d7917a6d1beabc6958f2c223d53973a0b66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- This test checks in which way the type checker handles phantom types in
-- RULES.  We would like these type variables to be generalised, but some
-- versions of GHC instantiated them to `()', which seriously limited the
-- applicability of such RULES.

module Main (main)
where

data T a = C

foo :: T a -> String
{-# NOINLINE foo #-}
foo C = "rewrite rule did NOT fire"

{-# RULES 

-- this rule will not fire if the type argument of `T' is constrained to `()'
--
"foo/C" foo C = "rewrite rule did fire"

 #-}

main = putStrLn $ foo (C :: T Int)