OSDN Git Service

* g++.old-deja/g++.other/thunk1.C: New test.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / static14.C
1 // Build don't run:
2 // Origin: scott snyder <snyder@fnal.gov>
3
4 struct basic_string
5 {
6   ~basic_string();
7 };
8
9 struct Side
10 {
11   void name()
12   {
13     static basic_string sname;
14   }
15 };
16
17 int main ()
18 {
19 }