Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / template / repo1.C
blob08eea8883ddb1ee394302cb261f5bc2f86973211
1 // { dg-options "-frepo" }
3 struct A {
4   A();
5 };
7 A::A() {}
9 template <typename T>
10 struct B : public A {
11   B() {} // { dg-bogus "" }
14 B<int> b;
16 int main () {}
18 // { dg-final { cleanup-repo-files } }