summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memtemp28.C
blob: 4be565a04d95bf7f5758977395c952d7cc18abd1 (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
// { dg-do run  }
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();
}