← Back to index
|
Original Bugzilla link
Bug 6608 – Tuple field is not escaped
Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P2
Component
phobos
Product
D
Version
D2
Platform
All
OS
All
Creation time
2011-09-05T22:46:00Z
Last change time
2011-09-06T01:45:10Z
Keywords
patch
Assigned to
nobody
Creator
k.hara.pg
Comments
Comment #0
by k.hara.pg — 2011-09-05T22:46:12Z
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")
Comment #1
by k.hara.pg — 2011-09-06T00:04:41Z
https://github.com/D-Programming-Language/phobos/pull/242
Comment #2
by bearophile_hugs — 2011-09-06T01:45:10Z
Merged, and it works. Thanks for your work.