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

14 lines
129 B
C

// { dg-do link }
struct foo
{
foo() {}
~foo() {}
void func() { static foo x; }
};
int main()
{
foo f;
return 0;
}