mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
18 lines
237 B
D
18 lines
237 B
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();
|
|
}
|
|
}
|