c++: fix explicit/copy problem [PR109247]
[official-gcc.git] / gcc / testsuite / gdc.dg / pr107592.d
blob59f34477356249d51abf772f5193b2295cc68add
1 // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107592
2 // { dg-do compile }
4 void test107592(Things...)(Things things)
6 label:
7 foreach (thing; things)
9 continue label;
13 alias a107592 = test107592!(string);