[project @ 2001-08-22 12:24:41 by simonmar]
[ghc-hetmet.git] / ghc / tests / deSugar / should_compile / ds001.hs
diff --git a/ghc/tests/deSugar/should_compile/ds001.hs b/ghc/tests/deSugar/should_compile/ds001.hs
deleted file mode 100644 (file)
index d3f0b60..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
--- !!! ds001 -- simple function and pattern bindings
---
--- this tests ultra-simple function and pattern bindings (no patterns)
-
-module ShouldCompile 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