1 // https://issues.dlang.org/show_bug.cgi?id=17352
bug(Args...)2 void bug(Args...)()
3 {
4 }
5 
test(bool coin)6 void test(bool coin)
7 {
8     if (coin)
9     {
10         string foobar;
11         bug!foobar();
12     }
13     else
14     {
15         string foobar;
16         bug!foobar();
17     }
18 }
19