about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/failures/transitive-deps/LibD.hs
blob: 326d224a2a153905dbdc346a72af8da9a26d7ceb (plain) (blame)
1
2
3
4
5
6
7
module LibD (thingD) where

import LibA (thingA)
import LibB (thingB)

thingD :: Int
thingD = thingA + thingB