Add SessionConfig
[lsp-test.git] / src / Language / Haskell / LSP / Test / Compat.hs
index cd7de0885e31db77eabd2f5b5b289255bf44385e..2372b09eabdb70e20fb25024eb244bc898f134d1 100644 (file)
@@ -1,4 +1,8 @@
 {-# LANGUAGE CPP #-}
+-- For some reason ghc warns about not using
+-- Control.Monad.IO.Class but it's needed for
+-- MonadIO
+{-# OPTIONS_GHC -Wunused-imports #-}
 module Language.Haskell.LSP.Test.Compat where
 
 import Control.Concurrent.Chan
@@ -28,3 +32,4 @@ chanSource c = do
   x <- liftIO $ readChan c
   yield x
   chanSource c
+  
\ No newline at end of file