view gcc/testsuite/g++.dg/template/static2.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

class A;

template<int A::* P>
class B
{
public:
  static int A::* const p = P; // { dg-error "25:'constexpr' needed" "" { target c++11 } }
  // { dg-error "25:invalid in-class" "" { target c++98_only } .-1 }
  // { dg-error "29:template parameter" "" { target c++98_only } .-2 }
};

class A
{
public:

int dummy;

B<&A::dummy> d;
};