[Issue 19213] goto skips declaration of variable in std.algorithm.iteration.joiner
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Mon Dec 17 17:06:25 UTC 2018
https://issues.dlang.org/show_bug.cgi?id=19213
--- Comment #4 from arne.ludwig at posteo.de ---
I reduced the example a bit more. The struct is not involved in the error.
import std.algorithm;
import std.range;
void main()
{
auto results = [[1,2], [3,4]]
.map!(q => q.chunkBy!"a")
.joiner;
}
--
More information about the Digitalmars-d-bugs
mailing list