mirror of
https://github.com/barrucadu/dejafu.git
synced 2024-12-18 19:11:37 +03:00
2aa2b8f447
Closes #44
13 lines
356 B
Haskell
13 lines
356 B
Haskell
{-# LANGUAGE ImpredicativeTypes #-}
|
|
|
|
-- | This is a separate module because of the need for
|
|
-- ImpredicativeTypes, which breaks things elsewhere in the main
|
|
-- SearchParty module.
|
|
module Examples.ClassLaws.Impredicative where
|
|
|
|
import Control.Monad.ST (ST, runST)
|
|
import Unsafe.Coerce (unsafeCoerce)
|
|
|
|
runST' :: ST t Bool -> Bool
|
|
runST' = unsafeCoerce runST
|