OSDN Git Service

* g++.dg/parse/repo1.C: Use cleanup-repo-files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / repo4.C
1 // { dg-do link }
2 // { dg-options "-frepo" }
3 // Build then link:
4
5 template <class T>
6 struct S {
7   ~S ();
8 };
9
10 template <class T>
11 S<T>::~S () {}
12
13 int main ()
14 {
15   S<int> s;
16 }
17
18 // { dg-final { cleanup-repo-files } }