summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/T5691.hs
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2012-05-19 13:41:35 +0100
committerIan Lynagh <igloo@earth.li>2012-05-19 13:41:35 +0100
commit64f085a1879819513712c0798b58247824ff5427 (patch)
tree2cfe3c1488b0801a71e41d04c64831878ddc0ce4 /testsuite/tests/typecheck/should_fail/T5691.hs
parentb70dd33ffa69b3d324411917596db73ba7058132 (diff)
downloadhaskell-64f085a1879819513712c0798b58247824ff5427.tar.gz
Fix tests to run without mtl
Diffstat (limited to 'testsuite/tests/typecheck/should_fail/T5691.hs')
-rw-r--r--testsuite/tests/typecheck/should_fail/T5691.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/typecheck/should_fail/T5691.hs b/testsuite/tests/typecheck/should_fail/T5691.hs
index c63ba7b8d2..49fc776eac 100644
--- a/testsuite/tests/typecheck/should_fail/T5691.hs
+++ b/testsuite/tests/typecheck/should_fail/T5691.hs
@@ -4,7 +4,7 @@ module GHCBug where
import Control.Applicative as Ap
import Control.Monad (MonadPlus, mplus, mzero)
-import Control.Monad.Identity (Identity, runIdentity)
+import Data.Functor.Identity (Identity, runIdentity)
newtype PrintRuleInterp v = MkPRI { printRule_ :: Int -> String }
class Test p where