]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/issue20362.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / issue20362.d
CommitLineData
5fee5ec3
IB
1void main() {
2 string str;
3 stringify((chars) {str ~= chars; });
4}
5
6void stringify(scope void delegate(scope const char[]) sink) {
7 sink("oops");
8}