https://issues.dlang.org/show_bug.cgi?id=12768
--- Comment #5 from Mathias LANG <[email protected]> --- It's been 7 years, but I confirm it's still not `@nogc`: ``` import std.algorithm; void main () @nogc { auto rng = "Hello.Dear.World".splitter('.'); assert(rng.front == "Hello"); // Error here } ``` --
