https://issues.dlang.org/show_bug.cgi?id=15166

--- Comment #4 from Martin Nowak <[email protected]> ---
A workaround is to use a variable.

bool res = true;
foreach (index, element; Group1.expand)
{
    static if (!is(Group1.expand[index] == Group2.expand[index]))
    {
        res = false;
        break;
    }
}
return res;

--

Reply via email to