diff options
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/failures/transitive-deps/LibD.hs')
-rw-r--r-- | third_party/bazel/rules_haskell/tests/failures/transitive-deps/LibD.hs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/third_party/bazel/rules_haskell/tests/failures/transitive-deps/LibD.hs b/third_party/bazel/rules_haskell/tests/failures/transitive-deps/LibD.hs new file mode 100644 index 000000000000..326d224a2a15 --- /dev/null +++ b/third_party/bazel/rules_haskell/tests/failures/transitive-deps/LibD.hs @@ -0,0 +1,7 @@ +module LibD (thingD) where + +import LibA (thingA) +import LibB (thingB) + +thingD :: Int +thingD = thingA + thingB |