[project @ 1997-07-30 23:52:45 by sof]
[ghc-hetmet.git] / ghc / compiler / tests / deSugar / ds001.hs
diff --git a/ghc/compiler/tests/deSugar/ds001.hs b/ghc/compiler/tests/deSugar/ds001.hs
deleted file mode 100644 (file)
index 0358f20..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
---!!! ds001 -- simple function and pattern bindings
---
--- this tests ultra-simple function and pattern bindings (no patterns)
-
-module Test where
-
--- simple function bindings
-
-f x = x
-
-g x y z = f z
-
-j w x y z = g w x z
-
-h x y = f y
-  where
-    f a b = a
-
--- simple pattern bindings
-
-a = b
-
-b = f
-
-c = c