diff options
-rw-r--r-- | testsuite/tests/th/T19988.hs | 10 | ||||
-rw-r--r-- | testsuite/tests/th/all.T | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/tests/th/T19988.hs b/testsuite/tests/th/T19988.hs new file mode 100644 index 0000000000..c50ac8de79 --- /dev/null +++ b/testsuite/tests/th/T19988.hs @@ -0,0 +1,10 @@ +{-# LANGUAGE TemplateHaskell #-} +{-# LANGUAGE TypeApplications #-} +module THSpliceType where + +import Language.Haskell.TH + +foo :: Q Exp +foo = + let myType = [t| Int |] + in [| id @ $myType |] diff --git a/testsuite/tests/th/all.T b/testsuite/tests/th/all.T index 029353cfc3..c39c052e62 100644 --- a/testsuite/tests/th/all.T +++ b/testsuite/tests/th/all.T @@ -529,3 +529,4 @@ test('T17804', normal, compile, ['']) test('T19470', only_ways(['ghci']), ghci_script, ['T19470.script']) test('T19737', normal, compile, ['']) test('T19759', normal, compile, ['']) +test('T19988', expect_broken(19988), compile, ['']) |