http://d.puremagic.com/issues/show_bug.cgi?id=2416
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |[EMAIL PROTECTED]
Keywords| |rejects-valid
------- Comment #2 from [EMAIL PROTECTED] 2008-10-25 07:13 -------
That's true of operator overloads defined by the programmer. This, OTOH, is a
built-in operation on a built-in type form. Therefore the code is valid, just
like
typedef int Value;
Value a, b, c;
...
a = b + c;
--