[project @ 1999-06-30 09:49:55 by simonpj]
authorsimonpj <unknown>
Wed, 30 Jun 1999 09:49:55 +0000 (09:49 +0000)
committersimonpj <unknown>
Wed, 30 Jun 1999 09:49:55 +0000 (09:49 +0000)
Add a test for deriving Show (f (f a)); makes Hugs hang

ghc/tests/deriving/should_fail/drvfail001.hs [new file with mode: 0644]
ghc/tests/deriving/should_fail/drvfail001.stderr [new file with mode: 0644]

diff --git a/ghc/tests/deriving/should_fail/drvfail001.hs b/ghc/tests/deriving/should_fail/drvfail001.hs
new file mode 100644 (file)
index 0000000..aa7867f
--- /dev/null
@@ -0,0 +1,25 @@
+{-  From: Ian Bayley 
+    Sent: Tuesday, June 29, 1999 3:39 PM
+    To: hugs-bugs@haskell.org
+    Subject: Show for higher-order nested datatypes
+    
+    
+    Is "deriving Show" meant to work for higher-order nested datatypes ?
+    Hugs hangs when loading in the following file:
+-}
+
+module Foo where
+
+type SqMat a = SM Nil a
+
+data SM f a = ZeroS (f (f a)) | SuccS (SM (Cons f) a) 
+                      deriving Show
+
+
+data Nil a = MkNil deriving Show
+
+data Cons f a = MkCons a (f a)
+                      deriving Show
+
+
+
diff --git a/ghc/tests/deriving/should_fail/drvfail001.stderr b/ghc/tests/deriving/should_fail/drvfail001.stderr
new file mode 100644 (file)
index 0000000..887f7cd
--- /dev/null
@@ -0,0 +1,7 @@
+
+drvfail001.hs:11:
+    No instance for `Show (f (f a))'
+    When deriving classes for `SM'
+
+Compilation had errors
+