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

import Ghci025D

g x = f x + 1

h x = x `div` 2

data C = C {x :: Int}