On 2009-01-02 10:37:50 -0500, Benji Smith <dlangu...@benjismith.net> said:

case a?.b:c:
  break;

is this

  case ((a?).b):
c:
  break;

or is it

case (a ? b : c ) :
break;

How's this different from

        case a*.b:

is this:

        case ((a*).b):

or is it:

        case ((a) * (.b)):


--
Michel Fortin
michel.for...@michelf.com
http://michelf.com/

Reply via email to