aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/constexpr-virtual8.C
blob: 4a7cc972a91309940df179dfc19f526dd5b5378d (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// P1064R0
// { dg-do compile }
// { dg-options "-std=c++2a" }

template<typename T>
struct X1
{
  virtual T f() const = 0;
};

struct X2: public X1<int>
{
  constexpr virtual int f() const { return 2; }
};

struct X3: public X2
{
  virtual int f() const { return 3; }
};

struct X4: public X3
{
  constexpr virtual int f() const { return 4; }
};

constexpr int (X1<int>::*pf)() const = &X1<int>::f;

constexpr X2 x2;
static_assert(x2.f() == 2);
static_assert((x2.*pf)() == 2);

constexpr X1<int> const& r2 = x2;
static_assert(r2.f() == 2);
static_assert((r2.*pf)() == 2);

constexpr X1<int> const* p2 = &x2;
static_assert(p2->f() == 2);
static_assert((p2->*pf)() == 2);

constexpr X4 x4;
static_assert(x4.f() == 4);
static_assert((x4.*pf)() == 4);

constexpr X1<int> const& r4 = x4;
static_assert(r4.f() == 4);
static_assert((r4.*pf)() == 4);

constexpr X1<int> const* p4 = &x4;
static_assert(p4->f() == 4);
static_assert((p4->*pf)() == 4);