id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,os,architecture,failure,difficulty,testcase,blockedby,blocking,related
6027,Allow changing fixity of new type operators,atnnn,pcapriotti,"Here is the problem:

{{{
{-# LANGUAGE TypeOperators #-}
type (&) = ()
data (?)
class (#)
infixr 2 &
infixr 2 ?
infixr 2 #
}}}

{{{
testop.hs:5:10:
    The fixity signature for `&' lacks an accompanying binding

testop.hs:6:10:
    The fixity signature for `?' lacks an accompanying binding

testop.hs:7:10:
    The fixity signature for `#' lacks an accompanying binding
}}}

My solution is inspired by the 'type' keyword in the export list.

{{{
infixr 2 type &
infixr 2 type ?, type #
}}}",feature request,closed,normal,7.6.1,Compiler,7.5,fixed,,,Unknown/Multiple,Unknown/Multiple,None/Unknown,Unknown,,,,
