diff options
Diffstat (limited to 'testsuite/tests/quasiquotation/qq007/QQ.hs')
-rw-r--r-- | testsuite/tests/quasiquotation/qq007/QQ.hs | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/testsuite/tests/quasiquotation/qq007/QQ.hs b/testsuite/tests/quasiquotation/qq007/QQ.hs index 3c13315a31..eee8dc9670 100644 --- a/testsuite/tests/quasiquotation/qq007/QQ.hs +++ b/testsuite/tests/quasiquotation/qq007/QQ.hs @@ -1,11 +1,11 @@ -{-# LANGUAGE TemplateHaskell #-}
-module QQ where
-
-import Language.Haskell.TH.Quote
-import Language.Haskell.TH
-
-pq = QuasiQuoter { quoteDec = \_ -> [d| f x = x |],
- quoteType = \_ -> [t| Int -> Int |],
- quoteExp = \_ -> [| $(varE (mkName "x")) + 1::Int |],
- quotePat = \_ -> [p| Just x |] }
-
+{-# LANGUAGE TemplateHaskell #-} +module QQ where + +import Language.Haskell.TH.Quote +import Language.Haskell.TH + +pq = QuasiQuoter { quoteDec = \_ -> [d| f x = x |], + quoteType = \_ -> [t| Int -> Int |], + quoteExp = \_ -> [| $(varE (mkName "x")) + 1::Int |], + quotePat = \_ -> [p| Just x |] } + |