dmd/compiler/test/compilable/issue20362.d
2022-07-09 18:53:07 +02:00

8 lines
157 B
D

void main() {
string str;
stringify((chars) {str ~= chars; });
}
void stringify(scope void delegate(scope const char[]) sink) {
sink("oops");
}