aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/memtemp26.C
blob: 3eb5f287dd8829bdd46f8f765f0c6a321ea01be5 (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 link  }
// GROUPS passed templates membertemplates
extern "C" int printf(const char*, ...);

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

  int i[4];
};


template <class X>
template <class U>
void S<X>::f(U u)
{
  printf ("%d\n", sizeof (U));
}


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