Remove ilxGen; part of trac #2243
[ghc-hetmet.git] / compiler / ilxGen / tests / test15.hs
diff --git a/compiler/ilxGen/tests/test15.hs b/compiler/ilxGen/tests/test15.hs
deleted file mode 100644 (file)
index 3e522d7..0000000
+++ /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"
-
-