summaryrefslogtreecommitdiff
path: root/testsuite/tests/stranal/should_compile/T9208.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/stranal/should_compile/T9208.hs')
-rw-r--r--testsuite/tests/stranal/should_compile/T9208.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuite/tests/stranal/should_compile/T9208.hs b/testsuite/tests/stranal/should_compile/T9208.hs
index b8ec6df6d1..5243445c96 100644
--- a/testsuite/tests/stranal/should_compile/T9208.hs
+++ b/testsuite/tests/stranal/should_compile/T9208.hs
@@ -25,6 +25,7 @@ import Control.Monad
#if __GLASGOW_HASKELL__ >= 800
import Control.Monad.Fail (MonadFail(fail))
#endif
+import Control.Monad.IO.Class (MonadIO (..))
import Data.Binary
import Data.Binary.Get
@@ -81,7 +82,8 @@ instance MonadFail GHCJSQ where
fail = undefined
#endif
-instance TH.Quasi GHCJSQ where qRunIO m = GHCJSQ $ \s -> fmap (,s) m
+instance MonadIO GHCJSQ where liftIO m = GHCJSQ $ \s -> fmap (,s) m
+instance TH.Quasi GHCJSQ
-- | the Template Haskell server
runTHServer :: IO ()