diff options
Diffstat (limited to 'testsuite/tests/th/TH_repPatSig.hs')
-rw-r--r-- | testsuite/tests/th/TH_repPatSig.hs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testsuite/tests/th/TH_repPatSig.hs b/testsuite/tests/th/TH_repPatSig.hs new file mode 100644 index 0000000000..3f504ff372 --- /dev/null +++ b/testsuite/tests/th/TH_repPatSig.hs @@ -0,0 +1,18 @@ +{-# LANGUAGE ScopedTypeVariables #-} +-- test the representation of unboxed literals + +module Main +where + +import Language.Haskell.TH + +$( + [d| + foo :: Int -> Int + foo (x :: Int) = x + |] + ) + +main :: IO () +main = return () + |