(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test17352.d
// https://issues.dlang.org/show_bug.cgi?id=17352
void bug(Args...)()
{
}

void test(bool coin)
{
    if (coin)
    {
        string foobar;
        bug!foobar();
    }
    else
    {
        string foobar;
        bug!foobar();
    }
}