blob: 674a82df450297e4a137a2ad80a4a01174897714 [file] [log] [blame]
// Special g++ Options: -fexceptions
struct A {
A() { }
A(const char *) { }
A(const A&) { }
~A() { }
};
struct bmf {
bmf (const A n) { }
~bmf (void) { }
A name;
};
void imf (void) {
bmf Sabs ("abs");
}
int main(void) {
imf ();
}