(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
issue20362.d
void main() {
    string str;
    stringify((chars) {str ~= chars; });
}

void stringify(scope void delegate(scope const char[]) sink) {
    sink("oops");
}