summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/rename/should_compile/rn006.hs
blob: 4f4c0a4fed5eca4c073b83b6426eaf69af4ccac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- !!! rn006: two sets of mutually-recursive blobs:
-- !!!  f, g, h are mut rec
-- !!!  i, j, k are mut rec

module Test where

f x = g x x
i x = j x x

g x y = h x x y
j x y = k x x y

h x y z = f z
k x y z = i z