view gcc/testsuite/g++.dg/template/repo6.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// PR c++/34178
// { dg-options "-frepo" }
// { dg-final { cleanup-repo-files } }
// { dg-require-host-local "" }
// { dg-skip-if "dkms are not final links" { vxworks_kernel } }

template<typename T>
class A
{
private:
  static const int x;
  static int y;

public:
  int getX () { return x + y; }
};

template<typename T> const int A<T>::x = 0;
template<typename T> int A<T>::y = 0;

int
main ()
{
  A<int> a;
  return a.getX();
}