This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/14281] Regression in v3.4: friend class not working
- 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: 25 Feb 2004 02:22:39 -0000
- Subject: [Bug c++/14281] Regression in v3.4: friend class not working
- References: <20040225005221.14281.s_gccbugzilla@nedprod.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From reichelt at gcc dot gnu dot org 2004-02-25 02:22 -------
Here's a minimal testcase showing the problem.
I guess, gcc is actually right when rejecting the code
(it does so since 3.3), but I'm not sure.
=====================================================
template <typename T> struct A : public T::X {};
class B
{
template <typename> friend class A;
struct X {};
};
A<B> a;
=====================================================
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14281