about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/binary-with-lib-dynamic/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/binary-with-lib-dynamic/Main.hs')
-rw-r--r--third_party/bazel/rules_haskell/tests/binary-with-lib-dynamic/Main.hs7
1 files changed, 0 insertions, 7 deletions
diff --git a/third_party/bazel/rules_haskell/tests/binary-with-lib-dynamic/Main.hs b/third_party/bazel/rules_haskell/tests/binary-with-lib-dynamic/Main.hs
deleted file mode 100644
index d88f7c93d6..0000000000
--- a/third_party/bazel/rules_haskell/tests/binary-with-lib-dynamic/Main.hs
+++ /dev/null
@@ -1,7 +0,0 @@
-module Main where
-
-import Control.Monad (unless)
-import Lib           (value)
-
-main = unless (value == 42)
-    $ error $ "Incorrect lib value. Got " <> show value