From 46faadc39c722fd777a3d5580ba65472e6d26b55 Mon Sep 17 00:00:00 2001 From: simonmar <unknown> Date: Thu, 1 Jun 2000 08:51:05 +0000 Subject: [PATCH] [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 --- ghc/tests/reader/should_compile/read028.hs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 ghc/tests/reader/should_compile/read028.hs diff --git a/ghc/tests/reader/should_compile/read028.hs b/ghc/tests/reader/should_compile/read028.hs new file mode 100644 index 000000000000..1f193a4584a4 --- /dev/null +++ b/ghc/tests/reader/should_compile/read028.hs @@ -0,0 +1,3 @@ +module ShouldCompile where + +data T a b = (:^:) a b -- GitLab