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

20 lines
194 B
C

// { dg-do link }
// Origin: scott snyder <snyder@fnal.gov>
struct basic_string
{
~basic_string();
};
struct Side
{
void name()
{
static basic_string sname;
}
};
int main ()
{
}