blob: a19aba290e9da01506faf25d1e6ba7603fcccf07 [file] [log] [blame]
// { dg-skip-if "Additional Source File" *-*-* }
// This is the additional source file for test static-1.mm
struct A
{
static __thread int i;
};
int
test ()
{
if (A::i != 8)
return 1;
A::i = 17;
return 0;
}