summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/lib/should_run/dynamic005.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/lib/should_run/dynamic005.hs')
-rw-r--r--testsuite/tests/ghc-regress/lib/should_run/dynamic005.hs14
1 files changed, 0 insertions, 14 deletions
diff --git a/testsuite/tests/ghc-regress/lib/should_run/dynamic005.hs b/testsuite/tests/ghc-regress/lib/should_run/dynamic005.hs
deleted file mode 100644
index e90aeea960..0000000000
--- a/testsuite/tests/ghc-regress/lib/should_run/dynamic005.hs
+++ /dev/null
@@ -1,14 +0,0 @@
-module Main where
-
-import Data.Typeable
-
-f :: Typeable a => Int -> a -> [TypeRep]
-f 0 a = []
-f n a = typeOf a : f (n-1) [a]
-
--- pointwise compare 1000x1000 different TypeReps, there should be no equalities
--- (can be used as a benchmark)
-
-main = print $ length [ t1 | t1 <- replicate 1000 (f 10 ()),
- t2 <- replicate 1000 (f 10 'a'),
- t1 == t2 ]