blob: 9d344fd91474366ad0dcf60e4b8363df8d189316 [file] [log] [blame]
// 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];
}