(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
other/
pr88568.C
// PR c/88568
// { dg-do compile }
// { dg-require-dll "" }

struct S {
  __attribute__((dllimport)) static const char foo[];
};

int
foo (int x)
{
  return S::foo[x];
}