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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.old-deja/] [g++.other/] [thunk1.C] - Rev 844

Go to most recent revision | Compare with Previous | Blame | View Log

// { dg-do run  }
extern "C" void abort();

int ic;

struct X 
{
  X() { ++ic; }
  X( const X & ) { ++ic; }
 ~X() { if (--ic < 0) abort(); }
};

struct V 
{
  virtual ~V() {}
};

struct A : public virtual V 
{
}; 

struct B : public virtual V 
{
  virtual void foo( X ) = 0;
}; 

struct D : public A, public virtual B 
{
  virtual void foo( X ) {}
}; 

int main()
{
  B *b = new D;
  b->foo( X() );
}

Go to most recent revision | 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.