From: simonmar Date: Thu, 1 Jun 2000 08:51:05 +0000 (+0000) Subject: [project @ 2000-06-01 08:51:05 by simonmar] X-Git-Tag: Approximately_9120_patches~4334 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=46faadc39c722fd777a3d5580ba65472e6d26b55;p=ghc-hetmet.git [project @ 2000-06-01 08:51:05 by simonmar] Test for declaring an infix constructor using prefix notation, eg. data T a b = (:^:) a b --- diff --git a/ghc/tests/reader/should_compile/read028.hs b/ghc/tests/reader/should_compile/read028.hs new file mode 100644 index 0000000..1f193a4 --- /dev/null +++ b/ghc/tests/reader/should_compile/read028.hs @@ -0,0 +1,3 @@ +module ShouldCompile where + +data T a b = (:^:) a b