summaryrefslogtreecommitdiff
path: root/ghc/compiler/ilxGen/tests/test15.hs
diff options
context:
space:
mode:
Diffstat (limited to 'ghc/compiler/ilxGen/tests/test15.hs')
-rw-r--r--ghc/compiler/ilxGen/tests/test15.hs18
1 files changed, 0 insertions, 18 deletions
diff --git a/ghc/compiler/ilxGen/tests/test15.hs b/ghc/compiler/ilxGen/tests/test15.hs
deleted file mode 100644
index 3e522d757c..0000000000
--- a/ghc/compiler/ilxGen/tests/test15.hs
+++ /dev/null
@@ -1,18 +0,0 @@
-
-{-# OPTIONS -fglasgow-exts -fno-implicit-prelude #-}
-
-
-import PrelBase
-import PrelList
-import PrelEnum
-import PrelShow
-import PrelIO
-
-
-bbuild :: forall a. (forall b. (a -> b -> b) -> b -> b) -> [a]
-{-# INLINE 2 bbuild #-}
-bbuild g = g (:) []
-
-main = putStr "hello world\n"
-
-