blob: b24bb8da35417ef71e61dc45c2b3c4d8901c6c10 [file] [log] [blame]
void main() {
string str;
stringify((chars) {str ~= chars; });
}
void stringify(scope void delegate(scope const char[]) sink) {
sink("oops");
}