OSDN Git Service

PR c++/34774
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / repo1.C
1 // { dg-options "-frepo" }
2 // { dg-require-host-local "" }
3
4 struct A {
5   A();
6 };
7
8 A::A() {}
9
10 template <typename T>
11 struct B : public A {
12   B() {} // { dg-bogus "" }
13 };
14
15 B<int> b;
16
17 int main () {}
18
19 // { dg-final { cleanup-repo-files } }