This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/12515] [3.4 Regression] Use of ?: operator in templated class causes ICE
- From: "reichelt at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 5 Oct 2003 19:52:38 -0000
- Subject: [Bug c++/12515] [3.4 Regression] Use of ?: operator in templated class causes ICE
- References: <20031005125406.12515.ahu@ds9a.nl>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12515
------- Additional Comments From reichelt at gcc dot gnu dot org 2003-10-05 19:52 -------
Even this crashes (no variable involved):
template<int> void foo() { 0 ?: 0; }