aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memtemp28.C
blob: 37e79c8cfef231907207180cf00002bb9a276f2c (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
extern "C" void abort();

int k;

template <class X>
struct S
{
  template <class U>
  void f(U u)
  { ++k; g(u); }

  template <class U>
  void g(U u)
  { ++k; }

  int c[16];
};

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

  if (k != 4)
    abort();
}