blob: 9f9355dcd20655a1bb761d8cecdbafecb733b8c8 [file] [log] [blame]
// 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();
}
}