2 // GROUPS passed constructors
3 // Check that global level object constructors get called.
5 extern "C" int printf (const char *, ...);
10 base (int arg1, int arg2);
14 base global_base(0x55, 0xff);
18 if ((global_base.f1 != 0x55) || (global_base.f2 != 0xff))
19 { printf ("FAIL\n"); return 1; }
24 base::base(int arg1, int arg2)