This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/16391] [3.3 Regression] Segmentation fault when mixing inheritance, templates and friends
- 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: 13 Jul 2004 21:19:14 -0000
- Subject: [Bug c++/16391] [3.3 Regression] Segmentation fault when mixing inheritance, templates and friends
- References: <20040706180815.16391.chgros+bugzilla@stanford.edu>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From reichelt at gcc dot gnu dot org 2004-07-13 21:19 -------
Even more compact testcase:
=======================================
struct A {};
template<typename> struct B : A {};
template<typename T> struct C : B<T>
{
friend class A;
C() : B<T>() {}
};
=======================================
--
What |Removed |Added
----------------------------------------------------------------------------
CC| |reichelt at gcc dot gnu dot
| |org
Keywords| |monitored
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16391