id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	os	architecture	failure	difficulty	testcase	blockedby	blocking	related
636	deriving Show for infix constructors forgets backquotes	koen@…		"When compiling and running the following module:

{{{
module Main where

data Foo = Int `Bar` Int
 deriving ( Show )

main = print (3 `Bar` 4)
}}}

The expected output is:

{{{
3 `Bar` 4
}}}

Or even just;

{{{
Bar 3 4
}}}

Instead, I get:

{{{
3 Bar 4
}}}"	bug	closed	normal		Compiler	6.4.1	fixed			Unknown/Multiple	Unknown/Multiple		Unknown				
