http://d.puremagic.com/issues/show_bug.cgi?id=6608
Summary: Tuple field is not escaped
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: Phobos
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Kenji Hara <[email protected]> 2011-09-05 22:46:12 PDT ---
>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")
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------