blob: cf2aba515b690214d85045281d922772fef090ea (
plain) (
tree)
|
|
load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_test",
)
package(
default_testonly = 1,
default_visibility = ["//visibility:public"],
)
haskell_test(
name = "binary-with-link-flags",
srcs = ["Main.hs"],
compiler_flags = ["-threaded"],
visibility = ["//visibility:public"],
deps = ["//tests/hackage:base"],
)
|