mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 17:30:58 +08:00
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:
parent
8a2fcf9128
commit
0d6959a024
@ -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.
|
||||
|
18
gcc/testsuite/g++.dg/template/friend49.C
Normal file
18
gcc/testsuite/g++.dg/template/friend49.C
Normal 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");
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user