(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
static10.C
// { dg-do assemble  }
// { dg-options "-w" }
// Origin: Ulrich Drepper <drepper@cygnus.com>

struct st
{
  int a;
};

int
foo (int a)
{
  static const st i = { 0 };

  if (i.a == a)
    return 0;
}