https://issues.dlang.org/show_bug.cgi?id=19213
--- Comment #4 from [email protected] --- 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; } --
