2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / static14.C
blob32f8b3be4ac50a18e673add8e26f58691fa4a38d
1 // { dg-do link  }
2 // Origin: scott snyder <snyder@fnal.gov>
4 struct basic_string
6   ~basic_string();
7 };
9 struct Side
11   void name()
12   {
13     static basic_string sname;
14   }
17 int main ()