(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.dg/
pr107592.d
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107592
// { dg-do compile }

void test107592(Things...)(Things things)
{
    label:
    foreach (thing; things)
    {
        continue label;
    }
}

alias a107592 = test107592!(string);