On Friday, 3 November 2017 at 10:26:42 UTC, Jonathan M Davis
wrote:
I think that there's a decent chance that some of Phobos won't
work with XP though....
Same for FreeBSD ;-)
e.g: below compile fine on Windows, but on FreeBSD (11 and 12), I
get a compile time error: Error: template instance to!string to
is not a template declaration, it is a module. I've come across a
few others too.... so Phobos developers need to test on FreeBSD
too.
------------------
import std.stdio;
import std.conv;
void main()
{
auto i = to!string(55);
writeln("i is a ", typeof(i).stringof);
}
-----------------------