X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fcompiler%2Ftests%2FdeSugar%2Fds033.hs;fp=ghc%2Fcompiler%2Ftests%2FdeSugar%2Fds033.hs;h=bdadb58bfeb9e1b3042a51d01e28c9ab244cae0c;hb=e7d21ee4f8ac907665a7e170c71d59e13a01da09;hp=0000000000000000000000000000000000000000;hpb=e48474bff05e6cfb506660420f025f694c870d38;p=ghc-hetmet.git diff --git a/ghc/compiler/tests/deSugar/ds033.hs b/ghc/compiler/tests/deSugar/ds033.hs new file mode 100644 index 0000000..bdadb58 --- /dev/null +++ b/ghc/compiler/tests/deSugar/ds033.hs @@ -0,0 +1,15 @@ +--!!! getting top-level dependencies right +-- +module Test 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