summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/quasiquotation/qq006/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/quasiquotation/qq006/Main.hs')
-rw-r--r--testsuite/tests/ghc-regress/quasiquotation/qq006/Main.hs9
1 files changed, 0 insertions, 9 deletions
diff --git a/testsuite/tests/ghc-regress/quasiquotation/qq006/Main.hs b/testsuite/tests/ghc-regress/quasiquotation/qq006/Main.hs
deleted file mode 100644
index 7e21acc235..0000000000
--- a/testsuite/tests/ghc-regress/quasiquotation/qq006/Main.hs
+++ /dev/null
@@ -1,9 +0,0 @@
-{-# LANGUAGE QuasiQuotes #-}
-module Main where
-
-import Expr
-
-main :: IO ()
-main = do case [$expr|1 + 2|] of
- [$expr|$x + $x|] -> print x
- _ -> return ()