blob: 924426ed37f433c42b2b2dc00a2f64832fab6e05 [file] [log] [blame]
/* For details, see README */
extern "C" {
void __attribute__((constructor))
my_constructor(void)
{
/* nothing */
}
void __attribute__((destructor))
my_destructor(void)
{
/* nothing */
}
}
class Foo {
public:
Foo() : mValue(1) {}
~Foo() { mValue = 0; }
private:
int mValue;
};
static Foo foo;