re PR c++/29054 (ICE on friend template specialization)

PR c++/29054
	* g++.dg/template/friend49.C: New test.

From-SVN: r120384
This commit is contained in:
Jakub Jelinek 2007-01-03 09:00:30 +01:00 committed by Jakub Jelinek
parent 8a2fcf9128
commit 0d6959a024
2 changed files with 23 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-01-03 Jakub Jelinek <jakub@redhat.com>
PR c++/29054
* g++.dg/template/friend49.C: New test.
2007-01-03 Steven G. Kargl <kargls@comcast.net>
* gfortran.dg/ibits.f90: New test.

View File

@ -0,0 +1,18 @@
// PR c++/29054
// { dg-do compile }
struct A
{
template <typename T, typename U> static void create (U) {}
};
struct B
{
friend void A::create <B, const char *> (const char *);
};
int
main ()
{
A::create<B>("test");
}