summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_compile/T11462_Plugin.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/typecheck/should_compile/T11462_Plugin.hs')
-rw-r--r--testsuite/tests/typecheck/should_compile/T11462_Plugin.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/typecheck/should_compile/T11462_Plugin.hs b/testsuite/tests/typecheck/should_compile/T11462_Plugin.hs
index fc6b3348fa..2c31225702 100644
--- a/testsuite/tests/typecheck/should_compile/T11462_Plugin.hs
+++ b/testsuite/tests/typecheck/should_compile/T11462_Plugin.hs
@@ -10,7 +10,7 @@ plugin = defaultPlugin { tcPlugin = Just . thePlugin }
thePlugin :: [CommandLineOption] -> TcPlugin
thePlugin opts = TcPlugin
{ tcPluginInit = return ()
- , tcPluginSolve = \_ _ _ _ _ -> return $ TcPluginOk [] []
+ , tcPluginSolve = \_ _ _ _ -> return $ TcPluginOk [] []
, tcPluginRewrite = \_ -> emptyUFM
, tcPluginStop = \_ -> return ()
}