view gcc/testsuite/g++.dg/template/repo7.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// 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 };
template class D<A>;

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

int
main ()
{
}