blob: 58836e26ebae7ba297c587889d88dfd35c009961 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// PR c++/4460
// Test that the cleanup for fully-constructed subobjects when a
// constructor throws gets the right address for a virtual base.
// Split into pieces for binary compatibility testing October 2002
extern void ctor2_x (void);
int main ()
{
ctor2_x ();
}
|