2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / repo4.C
blob26a744206cd6a69b83455844aee1430020d85c3d
1 // { dg-do link }
2 // { dg-options "-frepo" }
3 // Build then link:
5 template <class T>
6 struct S {
7   ~S ();
8 };
10 template <class T>
11 S<T>::~S () {}
13 int main ()
15   S<int> s;