https://issues.dlang.org/show_bug.cgi?id=15293

[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]
           Severity|normal                      |regression

--- Comment #2 from [email protected] ---
A first reduction:
----
static import std.file;
import std.stdio: File;
import std.string: toUpper;

void main()
{
    std.file.write("gentest.txt", "aaaaaaaa\naaaaaaa\n00000000a");
    foreach(ln; File("gentest.txt").byLine())
    {
        toUpper(ln);
    }
}
----

Works with 2.068.2.

--

Reply via email to