about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/failures/transitive-deps/LibB.hs
blob: 9ab883093bd885a842fdb7fa5ca6e1df7dc56443 (plain) (blame)
1
2
3
4
5
6
module LibB (thingB) where

import LibA (thingA)

thingB :: Int
thingB = thingA + 1