2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / static20.C
blob00afd2431d4e6919f73db1b26b55a6f03c591200
1 // { dg-do link  }
2 struct foo
4   foo() {};
5   ~foo() {};
6   void func() { static foo x; };
7 };
9 int main()
11    foo f;
12    return 0;