aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/memtemp95.C
blob: ea70393a55b6b4611bc21ad4514b40a0a40e2765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// { dg-do assemble  }
// Origin: Mark Mitchell <mitchell@codesourcery.com>

template <class T, class V>
struct S
{
};

template <class T>
struct S<T, int>
{
  template <class U>
  void f (U);
};

template <class T>
template <class U>
void S<T, int>::f (U)
{
}