(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
runnable/
test18868_3.d
static foreach(s; ["666", "777", "888"])
{
    mixin(genCtor(s));
}

int i;

string genCtor(string a)
{
    return "static this() { i += " ~ a ~ "; }";
}

void main()
{
    assert(i == 0 + 666 + 777 + 888);
}