Ticket #636 (closed bug: fixed)
deriving Show for infix constructors forgets backquotes
Description (last modified by simonmar) (diff)
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
Change History
Note: See
TracTickets for help on using
tickets.
