summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/deSugar/should_compile/ds033.hs
blob: 9d89a936c7c619593c7f5c874e77fce40189c84c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-- !!! getting top-level dependencies right
--
module ShouldCompile where

f1 x = g1 x
g1 y = y

g2 y = y
f2 x = g2 x

f3 x = g3 x
g3 y = f3 y

g4 y = f4 y
f4 x = g4 x