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

6 lines
84 B
Haskell

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