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

alias T = const(char)*;

T name()
{
    return "";
}

void collect(ref T)
{
}

void configure(T[T] targets)
{
    collect(targets[name]);
}