[project @ 2001-08-22 12:24:41 by simonmar]
[ghc-hetmet.git] / ghc / tests / deSugar / should_compile / ds029.hs
diff --git a/ghc/tests/deSugar/should_compile/ds029.hs b/ghc/tests/deSugar/should_compile/ds029.hs
deleted file mode 100644 (file)
index 0000523..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
--- !!! ds029: pattern binding with guards (dubious but valid)
---
-
-module ShouldCompile where
-
-f x = y
-    where (y,z) | y < z     = (0,1)
-               | y > z     = (1,2)
-               | True      = (2,3)