I'm trying to get some code that was working in ghc 7.0.4 work with 7.4.1.
It appears to me that old way of accessing IO from inside the Snap moand no longer typechecks.
In ghc 7.0.4, the documented way of accessing IO compiles.
a :: Snap ()
a = liftIO fireTheMissiles
http://hackage.haskell.org/packages/archive/snap-core/0.8.1/doc/html/Snap-Core.html
In GHC 7.4.1,
No instance for (MonadIO Snap)
arising from a use of `liftIO'
Possible fix: add an instance declaration for (MonadIO Snap)
I'm curious what an attractive work around would be.
ghc-pkg-7.0.4 list snap-coreandghc-pkg-7.4.1 list snap-core. – Daniel Wagner Jun 1 '12 at 2:35:t liftIO (return ()) :: Snap (). So your problem is elsewhere. Give us enough code that we can reproduce the problem and we'll try to help you understand it. – Daniel Wagner Jun 1 '12 at 5:33