diff options
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/package-id-clash-binary/a')
-rw-r--r-- | third_party/bazel/rules_haskell/tests/package-id-clash-binary/a/BUILD.bazel | 12 | ||||
-rw-r--r-- | third_party/bazel/rules_haskell/tests/package-id-clash-binary/a/Foo.hs | 3 |
2 files changed, 15 insertions, 0 deletions
diff --git a/third_party/bazel/rules_haskell/tests/package-id-clash-binary/a/BUILD.bazel b/third_party/bazel/rules_haskell/tests/package-id-clash-binary/a/BUILD.bazel new file mode 100644 index 000000000000..02c3a6b36d3f --- /dev/null +++ b/third_party/bazel/rules_haskell/tests/package-id-clash-binary/a/BUILD.bazel @@ -0,0 +1,12 @@ +load( + "@io_tweag_rules_haskell//haskell:haskell.bzl", + "haskell_library", + "haskell_toolchain_library", +) + +haskell_library( + name = "foo", + srcs = ["Foo.hs"], + visibility = ["//visibility:public"], + deps = ["//tests/hackage:base"], +) diff --git a/third_party/bazel/rules_haskell/tests/package-id-clash-binary/a/Foo.hs b/third_party/bazel/rules_haskell/tests/package-id-clash-binary/a/Foo.hs new file mode 100644 index 000000000000..ecac0701a07d --- /dev/null +++ b/third_party/bazel/rules_haskell/tests/package-id-clash-binary/a/Foo.hs @@ -0,0 +1,3 @@ +module Foo where + +x = 2 |