summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/friend49.C
blob: b4d717f5708aabee431c5518059a00d4686c60c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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");
}