(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test23235.d
/* https://issues.dlang.org/show_bug.cgi?id=23235
 */

@safe:

void awkk(string[] ppp...)
{
}

void bark(string[] foo...) {
    awkk(foo);
}

void cack(string[] bar...) {
    bark(bar);
}

void test() {
    cack("abc", "def");
}