URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.oliva/] [delete4.C] - Rev 305
Compare with Previous | Blame | View Log
// { dg-do run }
// Copyright (C) 1999 Free Software Foundation
// by Alexandre Oliva <oliva@lsd.ic.unicamp.br>
// Test whether dtors of vbases are called from dtor of aggregate of array.
// Variant of delete2.C and delete3.C.
extern "C" void abort();
extern "C" void exit(int);
struct Foo {
~Foo() {
exit(0);
}
};
struct Bar : virtual Foo {
};
struct Baz {
Bar i[1];
};
int main() {
Baz();
abort();
}