summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memtemp29.C
blob: 808f233c648230d32c26f67673dab52351db1b4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// { dg-do link  }
// GROUPS passed templates membertemplates
extern "C" int printf(const char*, ...);

template <class X>
struct S
{
  template <class U>
  void f(U u);

  template <class U>
  void g(U u);

  int c[16];
};

template <class X>
template <class U>
void S<X>::f(U u)
  { printf ("In S::f(U)\n"); g(u); }

template <class X>
template <class U>
void S<X>::g(U u)
  { printf ("In S::g(U)\n"); }

int main()
{
  S<char*> s;
  s.f(3);
  s.f("adf");
}