aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/repo8.C
blob: c51592c934919e5e499d8a76b85402f75984d375 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// PR c++/34340
// { dg-options "-frepo" }
// { dg-final { cleanup-repo-files } }
// { dg-require-host-local "" }
// { dg-skip-if "dkms are not final links" { vxworks_kernel } }

struct A
{
  int a;
};

template <typename T> struct D
{
  static const A b;
};

template<typename T> const A D<T>::b = { 2 };

const A *x = &D<A>::b;

int
main ()
{
}