summaryrefslogtreecommitdiff
path: root/testsuite/tests/th/T18121.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/th/T18121.hs')
-rw-r--r--testsuite/tests/th/T18121.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/th/T18121.hs b/testsuite/tests/th/T18121.hs
index f9efdf378b..1f51b61e73 100644
--- a/testsuite/tests/th/T18121.hs
+++ b/testsuite/tests/th/T18121.hs
@@ -3,5 +3,5 @@ module Bug where
import Language.Haskell.TH
-sapply :: Q (TExp (a -> b)) -> Q (TExp a) -> Q (TExp b)
+sapply :: Quote m => Code m (a -> b) -> Code m a -> Code m b
sapply cf cx = [|| $$cf $$cx ||]