view gcc/testsuite/g++.dg/template/static2.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +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;
};