aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memtemp12.C
blob: 94a8c3c302630b2887f7670d62347e15864647ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Build don't link:
// GROUPS passed templates membertemplates
template <class T>
struct S
{
  template <class U>
  void foo(U);
};

void f()
{
  S<int> s;
}