OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-dev/] [fsf-gcc-snapshot-1-mar-12/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [dc6.C] - Rev 783

Compare with Previous | Blame | View Log

// { dg-do run { target c++11 } }

int a_ct;

struct A
{
  A(int i): i(i) { ++a_ct; }
  A(const A& a): i(a.i) { ++a_ct; }
  ~A() { --a_ct; }
  int i;
};

struct V
{
  V() { }
};

struct B: virtual V
{
  A a;
  B(A a): a(a) { }
  B(int i): B(A(i)) { }
};

struct C: B
{
  C(int i): B(i) { }
};

int main()
{
  {
    B b(42);
    C c(24);
    if (b.a.i != 42
        ||c.a.i != 24)
      __builtin_abort ();
  }
  return a_ct;
}

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.