blob: 3fa1a53ace51b36dfd4ee96b3f88fb09cb42dd1b [file] [log] [blame]
extern "C" void exit (int);
extern "C" void abort (void);
#include "ctor2.h"
int r;
void ctor2_x () {
try
{
DerivedStream str;
}
catch (...) { }
if (r != 0)
abort ();
exit (0);
}