about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/binary-with-plugin/Plugin.hs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/binary-with-plugin/Plugin.hs')
-rw-r--r--third_party/bazel/rules_haskell/tests/binary-with-plugin/Plugin.hs15
1 files changed, 0 insertions, 15 deletions
diff --git a/third_party/bazel/rules_haskell/tests/binary-with-plugin/Plugin.hs b/third_party/bazel/rules_haskell/tests/binary-with-plugin/Plugin.hs
deleted file mode 100644
index 3827bb7992..0000000000
--- a/third_party/bazel/rules_haskell/tests/binary-with-plugin/Plugin.hs
+++ /dev/null
@@ -1,15 +0,0 @@
-module Plugin (plugin) where
-
-import Control.Monad (when)
-import GhcPlugins
-import System.Process (readProcess)
-
-plugin :: Plugin
-plugin = defaultPlugin { installCoreToDos = install }
-
-install :: [CommandLineOption] -> [CoreToDo] -> CoreM [CoreToDo]
-install [arg] todo = do
-  when ('$' `elem` arg) $
-    fail "Make variable not expanded."
-  _ <- liftIO $ readProcess arg [] ""
-  return todo