(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
imports/
ice11054a.d
template Tuple()
{
    string injectNamedFields()
    {
        formatNthX();
        return "";
    }
}
Tuple!T tuple(T...)()
{
}

void formatNthX(A...)(A)
{
    static gencode(size_t count)()
    {
        result ~= "";   // comment out this line will remove the ICE
        return "";
    }
    mixin(gencode!(A.length)());
}