[project @ 2000-06-01 08:51:05 by simonmar]
authorsimonmar <unknown>
Thu, 1 Jun 2000 08:51:05 +0000 (08:51 +0000)
committersimonmar <unknown>
Thu, 1 Jun 2000 08:51:05 +0000 (08:51 +0000)
Test for declaring an infix constructor using prefix notation, eg.

data T a b = (:^:) a b

ghc/tests/reader/should_compile/read028.hs [new file with mode: 0644]

diff --git a/ghc/tests/reader/should_compile/read028.hs b/ghc/tests/reader/should_compile/read028.hs
new file mode 100644 (file)
index 0000000..1f193a4
--- /dev/null
@@ -0,0 +1,3 @@
+module ShouldCompile where
+
+data T a b = (:^:) a b