diff options
Diffstat (limited to 'testsuite/tests/plugins/plugin-recomp/ImpurePlugin.hs')
-rw-r--r-- | testsuite/tests/plugins/plugin-recomp/ImpurePlugin.hs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/tests/plugins/plugin-recomp/ImpurePlugin.hs b/testsuite/tests/plugins/plugin-recomp/ImpurePlugin.hs new file mode 100644 index 0000000000..0ccb626a15 --- /dev/null +++ b/testsuite/tests/plugins/plugin-recomp/ImpurePlugin.hs @@ -0,0 +1,10 @@ +module ImpurePlugin where + +import GhcPlugins +import Common + +plugin :: Plugin +plugin = defaultPlugin { + installCoreToDos = install, + pluginRecompile = impurePlugin + } |