OSDN Git Service

PR c++/9335
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / repo7.C
1 // PR c++/34340
2 // { dg-options "-frepo" }
3 // { dg-final { cleanup-repo-files } }
4 // { dg-require-host-local "" }
5 // { dg-skip-if "dkms are not final links" { vxworks_kernel } }
6
7 struct A
8 {
9   int a;
10 };
11
12 template <typename T> struct D
13 {
14   static const A b;
15 };
16
17 template<typename T> const A D<T>::b = { 2 };
18 template class D<A>;
19
20 const A *x = &D<A>::b;
21
22 int
23 main ()
24 {
25 }