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

import GHC.Plugins
import Common

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