(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
init/
static-init3.C
// PR c++/55137
// s should have constant initialization.
// { dg-final { scan-assembler-not "GLOBAL" } }

struct S {
  int b;
};

struct S s = { -1 + (int)(sizeof(int) - 1) };