March 12
https://issues.dlang.org/show_bug.cgi?id=24431

RazvanN <razvan.nitu1305@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |razvan.nitu1305@gmail.com

--- Comment #1 from RazvanN <razvan.nitu1305@gmail.com> ---
Unfortunately, there is little we can do to fix this if a test case is not provided. If you cannot reduce it, giving the full content of program.d still is better than nothing.

--
March 12
https://issues.dlang.org/show_bug.cgi?id=24431

--- Comment #2 from Dāvis <davispuh@gmail.com> ---
I narrowed it down to this:

```
import std.algorithm.iteration;

void main() {
    splitter("test", '\n');
}
```

--