blob: 0789884079b972c6b99563535ee1197f6cd1d53a [file] [log] [blame]
// Origin: Mark Mitchell <mark@codesourcery.com>
extern "C" void abort();
extern "C" void printf(const char*, ...);
int i;
struct A;
struct A* as[10];
struct A {
A () { as[i++] = this; }
A (const A&) { as[i++] = this; }
~A() { if (i == 0 || as[--i] != this) abort(); }
};
A f() { return A(); }
int main ()
{
A a (f ());
}