]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/test17352.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test17352.d
1 // https://issues.dlang.org/show_bug.cgi?id=17352
2 void bug(Args...)()
3 {
4 }
5
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 }