(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
static20.C
// { dg-do link  }
struct foo
{
  foo() {}
  ~foo() {}
  void func() { static foo x; }
};

int main()
{
   foo f;
   return 0;
}