Commit e77b95a2 by Kriang Lerdsuwanakij Committed by Kriang Lerdsuwanakij

re PR c++/12369 (ICE with templates and friends)

	PR c++/12369
	* g++.dg/template/friend25.C: New test.

From-SVN: r72596
parent defc0463
2003-10-17 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
PR c++/12369
* g++.dg/template/friend25.C: New test.
2003-10-16 Ziemowit Laski <zlaski@apple.com> 2003-10-16 Ziemowit Laski <zlaski@apple.com>
* objc.dg/try-catch-2.m: Relax target triple to all Darwin * objc.dg/try-catch-2.m: Relax target triple to all Darwin
......
// { dg-do compile }
// Origin: Jiangbin Zhao <zhaojiangbin@yahoo.com>
// PR c++/12369: ICE for specialization of member function template
// as friend in ordinary class.
struct A {
template<class T> T* make() { return new T(); }
};
struct B {
friend B* A::make< B >(); // (1)
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment