diff options
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/c-compiles/Main.hs')
-rw-r--r-- | third_party/bazel/rules_haskell/tests/c-compiles/Main.hs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/third_party/bazel/rules_haskell/tests/c-compiles/Main.hs b/third_party/bazel/rules_haskell/tests/c-compiles/Main.hs deleted file mode 100644 index 5fc7b957c84b..000000000000 --- a/third_party/bazel/rules_haskell/tests/c-compiles/Main.hs +++ /dev/null @@ -1,8 +0,0 @@ -module Main (main) where - -import Control.Monad (unless) -import Lib (ten) - -main :: IO () -main = unless (ten == 10) - $ error $ "Incorrect lib value. Got " <> show ten |