summaryrefslogtreecommitdiff
path: root/testsuite/tests/plugins/plugin-recomp/ImpurePlugin.hs
blob: 0ccb626a159bff179d63c2219f2dcbcc9a11894c (plain)
1
2
3
4
5
6
7
8
9
10
module ImpurePlugin where

import GhcPlugins
import Common

plugin :: Plugin
plugin = defaultPlugin {
    installCoreToDos = install,
    pluginRecompile = impurePlugin
  }