summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/th/TH_spliceE4.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/th/TH_spliceE4.hs')
-rw-r--r--testsuite/tests/ghc-regress/th/TH_spliceE4.hs13
1 files changed, 0 insertions, 13 deletions
diff --git a/testsuite/tests/ghc-regress/th/TH_spliceE4.hs b/testsuite/tests/ghc-regress/th/TH_spliceE4.hs
deleted file mode 100644
index 99ee7a7648..0000000000
--- a/testsuite/tests/ghc-regress/th/TH_spliceE4.hs
+++ /dev/null
@@ -1,13 +0,0 @@
-
-module Main where
-
-import Language.Haskell.TH
-
-$( do let h x = x
- foo = [| \x -> $(h [| x |]) |]
-
- [d| baz = $foo |]
- )
-
-main = print (baz "Hello")
-