X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fcompiler%2Ftests%2Fwdp-ppr.hs;fp=ghc%2Fcompiler%2Ftests%2Fwdp-ppr.hs;h=0000000000000000000000000000000000000000;hb=0223e7466c2ee9fb735fa4f5e5b537408133700f;hp=563e752b909ea8c20dcb475cca0c4f54ec042558;hpb=2203f6dc8cd7f7282edc7c821bd5127fa1857d1a;p=ghc-hetmet.git diff --git a/ghc/compiler/tests/wdp-ppr.hs b/ghc/compiler/tests/wdp-ppr.hs deleted file mode 100644 index 563e752..0000000 --- a/ghc/compiler/tests/wdp-ppr.hs +++ /dev/null @@ -1,13 +0,0 @@ -{- -From: Kubiak Ryszard -To: partain -Subject: You may test the new pretty-printer on the following text: -Date: Wed, 2 Oct 91 18:06:05 BST --} - -data LList alpha = Nill | Conss alpha (LList alpha) - -append :: LList a -> LList a -> LList a -append xs ys = case xs of - Nill -> ys - (Conss z zs) -> Conss z (append zs ys)