diff options
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/binary-with-main')
-rw-r--r-- | third_party/bazel/rules_haskell/tests/binary-with-main/BUILD.bazel | 14 | ||||
-rw-r--r-- | third_party/bazel/rules_haskell/tests/binary-with-main/MainIsHere.hs | 4 |
2 files changed, 0 insertions, 18 deletions
diff --git a/third_party/bazel/rules_haskell/tests/binary-with-main/BUILD.bazel b/third_party/bazel/rules_haskell/tests/binary-with-main/BUILD.bazel deleted file mode 100644 index e1243260c2ab..000000000000 --- a/third_party/bazel/rules_haskell/tests/binary-with-main/BUILD.bazel +++ /dev/null @@ -1,14 +0,0 @@ -load( - "@io_tweag_rules_haskell//haskell:haskell.bzl", - "haskell_test", -) - -package(default_testonly = 1) - -haskell_test( - name = "binary-with-main", - srcs = ["MainIsHere.hs"], - main_function = "MainIsHere.this", - visibility = ["//visibility:public"], - deps = ["//tests/hackage:base"], -) diff --git a/third_party/bazel/rules_haskell/tests/binary-with-main/MainIsHere.hs b/third_party/bazel/rules_haskell/tests/binary-with-main/MainIsHere.hs deleted file mode 100644 index 5e8d38ba70df..000000000000 --- a/third_party/bazel/rules_haskell/tests/binary-with-main/MainIsHere.hs +++ /dev/null @@ -1,4 +0,0 @@ -module MainIsHere (this) where - -this :: IO () -this = return () |