This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/15682] Parser does not report error when *+ are used together in an exp.
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 27 May 2004 14:45:07 -0000
- Subject: [Bug c/15682] Parser does not report error when *+ are used together in an exp.
- References: <20040527144047.15682.u_238@hotmail.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-05-27 14:45 -------
Invalid as there is an unary operator for the "+" and white spaces are ignored for operators.
So
a* +1 is the same as a*+1 as a *+ 1.
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15682