OSDN Git Service

* pt.c (instantiate_decl): Tell the repository code about the
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / repo4.C
1 // Build then link:
2 // Special g++ Options: -frepo
3
4 template <class T>
5 struct S {
6   ~S ();
7 };
8
9 template <class T>
10 S<T>::~S () {}
11
12 int main ()
13 {
14   S<int> s;
15 }