You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sample code:
import std.stdio;
import std.file: readText;
void main() {
writeln(readText("foo.txt\0blah"));
}
The file 'foo.txt\0blah' /can't/ exist on unix (idk about windows), but foo.txt exists and is read.
The text was updated successfully, but these errors were encountered:
elronnd reported this on 2020-02-20T21:44:42Z
Transfered from https://issues.dlang.org/show_bug.cgi?id=20590
Description
Sample code: import std.stdio; import std.file: readText; void main() { writeln(readText("foo.txt\0blah")); } The file 'foo.txt\0blah' /can't/ exist on unix (idk about windows), but foo.txt exists and is read.The text was updated successfully, but these errors were encountered: