diff options
author | Kai Prott <kai.prott@hotmail.de> | 2021-11-24 11:59:01 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-11-26 16:01:47 -0500 |
commit | 69e62032a5a6db046b14f1e9b31d657818d9fb92 (patch) | |
tree | b1b26bed2c5daa8765790df0e3d84b4facf0ea65 /compiler | |
parent | 1830eea7a4053bf1973222c4750cd2796470d55f (diff) | |
download | haskell-69e62032a5a6db046b14f1e9b31d657818d9fb92.tar.gz |
Fix plugin type to GHC.Plugins.Plugin
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/GHC/Runtime/Loader.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Runtime/Loader.hs b/compiler/GHC/Runtime/Loader.hs index fbfc92cdee..24fb77b9bd 100644 --- a/compiler/GHC/Runtime/Loader.hs +++ b/compiler/GHC/Runtime/Loader.hs @@ -143,7 +143,7 @@ loadPlugin' occ_name plugin_name hsc_env mnwib mod_name [ text "The value", ppr name , text "with type", ppr actual_type , text "did not have the type" - , ppr pluginTyConName, text "as required"]) + , text "GHC.Plugins.Plugin" , text "as required"]) Right plugin -> return (plugin, mod_iface) } } } |