view gcc/testsuite/g++.dg/cpp0x/constexpr-virtual6.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++/70393
// { dg-do run { target c++11 } }

/* 'ab' has a static initializer, but we flubbed the initializer,
   because of B being the primary base.  */

struct A
{
  int a = 1;
};

struct B
{
  B *element = (B*)2;

    virtual int vfunc() = 0;

    int call_element()
    {
      return element->vfunc();
    }

    void set_element()
    {
      element = this;
    }
};

struct AB : public A, public B
{
    int vfunc()
    {
      return 0;
    }
};

static AB ab;

int main()
{
  if (ab.a != 1)
    return 1;
  if (ab.element != (void*)2)
    return 2;
  
  ab.set_element();
  return ab.call_element();
}