snix/third_party/bazel/rules_haskell/tests/failures/transitive-deps/LibD.hs

7 lines
110 B
Haskell

module LibD (thingD) where
import LibA (thingA)
import LibB (thingB)
thingD :: Int
thingD = thingA + thingB