From http://d.puremagic.com/issues/show_bug.cgi?id=3813#c17 Phobos in git master (e85103f13e), > This code: > > import std.stdio, std.typecons; > void main () { > writeln(tuple(1, "xx")); > } > > > Prints: > Tuple!(int,string)(1, xx) Expected: Tuple!(int,string)(1, "xx")
https://github.com/D-Programming-Language/phobos/pull/242
Merged, and it works. Thanks for your work.