rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/static15.C

16 lines
201 B
C

// { dg-do run }
// Origin: Mark Mitchell <mark@codesourcery.com>
// Special g++ Option: -fdata-sections
void f()
{
static int ctors[3] = { 0, 0, 0 };
ctors[2] = 7;
}
int main ()
{
f ();
}