OSDN Git Service

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