summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memtemp39.C
blob: f74deb49dd17b650c04f27072251220add891d04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// { dg-do assemble  }
// GROUPS passed templates membertemplates
template <class T>
struct S
{
  template <class U>
  void f(U u) { g(u); }

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

void foo()
{
  S<int> si;
  si.f(3);
}