OSDN Git Service

cp:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp95.C
1 // Build don't link:
2 // Origin: Mark Mitchell <mitchell@codesourcery.com>
3
4 template <class T, class V>
5 struct S
6 {
7 };
8
9 template <class T>
10 struct S<T, int>
11 {
12   template <class U>
13   void f (U);
14 };
15
16 template <class T>
17 template <class U>
18 void S<T, int>::f (U)
19 {
20 }