id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,os,architecture,failure,difficulty,testcase,blockedby,blocking,related
7188,`someName` does not always act like an infix.,timthelion,,"$ cat infix.hs
main = print f
f = (`div`) 3 4
[timothy@timothy haskell]$ ghc infix.hs
[1 of 1] Compiling Main             ( infix.hs, infix.o )

infix.hs:2:11: parse error on input `)'
[timothy@timothy haskell]$ cat infix1.hs
main = print f
(//) = div
f = (//) 3 4
[timothy@timothy haskell]$ ghc infix1.hs 
[timothy@timothy haskell]$ 
",bug,closed,normal,,Compiler,7.4.2,invalid,,,Unknown/Multiple,Unknown/Multiple,GHC rejects valid program,,,,,
