Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / g++.dg / template / friend49.C
blobb4d717f5708aabee431c5518059a00d4686c60c5
1 // PR c++/29054
2 // { dg-do compile }
4 struct A
6   template <typename T, typename U> static void create (U) {}
7 };
9 struct B
11   friend void A::create <B, const char *> (const char *);
14 int
15 main ()
17   A::create<B>("test");