summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/prog001/C.hs
blob: 006014f98c6f7ff6f187b8c487fce18962287693 (plain)
1
2
3
4
5
6
7
8
9
module C (f, g, h) where

import D
 
g x = f x + 1

h x = x `div` 2

data C = C {x :: Int}