id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	os	architecture	failure	difficulty	testcase	blockedby	blocking	related
2529	deriving Read fails on infix data constructors with record syntax	spl	simonpj	"The example below successfully performs the {{{show}}}, but {{{reads}}} returns an empty list. It fails in both GHCi and GHC. It succeeds if you replaces the infix symbol with a name.

{{{
module Main where

data A = (:<>:) { x :: Int, y :: Int } deriving (Read, Show)

t :: A
t = 1 :<>: 2

s :: String
s = show t

r :: [(A,String)]
r = reads s

main :: IO ()
main = do putStrLn s
          putStrLn (show r)
}}}"	bug	closed	normal		Compiler	6.8.3	fixed		leather@…	MacOS X	x86		Unknown	deriving/should_run/T2529			
