blob: 3b8b80d6ca4771a0b219e3fa832756c05448a676 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module A where
-- E source imports B
-- In interface file see source module dependencies: B {-# SOURCE #-}
import E
-- C imports B
-- In interface file see source module dependencies: B
import C
-- Instance for B only available from B.hi not B.hi-boot, so tests we load
-- that.
main = print B
|