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
import std.stdio;
void main()
{
int[] s1;
readf("%(%d,%)", &s1);
}
----
Even though unformatRange works, this code fails to compile, because it can't instantiate std.conv.parse!(int[]) with a LockingTextWriter.
https://github.com/D-Programming-Language/phobos/blob/2613bc8c3a7ad527ccdf58028765555392706ac9/std/format.d#L4043
The text was updated successfully, but these errors were encountered:
code (@MartinNowak) reported this on 2013-05-10T13:37:58Z
Transfered from https://issues.dlang.org/show_bug.cgi?id=10060
CC List
Description
import std.stdio; void main() { int[] s1; readf("%(%d,%)", &s1); } ---- Even though unformatRange works, this code fails to compile, because it can't instantiate std.conv.parse!(int[]) with a LockingTextWriter. https://github.com/D-Programming-Language/phobos/blob/2613bc8c3a7ad527ccdf58028765555392706ac9/std/format.d#L4043The text was updated successfully, but these errors were encountered: