[project @ 1997-08-14 18:30:43 by sof]
[ghc-hetmet.git] / ghc / tests / etc / testgrhss.hs
diff --git a/ghc/tests/etc/testgrhss.hs b/ghc/tests/etc/testgrhss.hs
new file mode 100644 (file)
index 0000000..73f1901
--- /dev/null
@@ -0,0 +1,16 @@
+-- grhss
+-----
+
+f x | True = x+1       -- 1
+    | False = True
+
+-----
+
+x | True = x+1         -- 2
+  | False = x
+
+-----
+
+
+
+