aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memtemp29.C
blob: 4000070c30a2681a29b39bcd731de66448992ace (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
// Build don't run:
// 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");
}