summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/prog003/A.hs
blob: 6e9351c06627a66c06ca31347104b08c43459ffc (plain)
1
2
3
4
5
6
7
8
module A(main,a) where

import B
import C(c)

main = print (a 42)

a x = b x + c x