http://d.puremagic.com/issues/show_bug.cgi?id=4608
Yao Gomez <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Yao Gomez <[email protected]> 2012-02-05 21:18:12 PST --- DMD 2.058HEAD. With this example, all the assertions fail. ------ import std.string, std.stdio, std.conv; void main() { auto foo = "foobar\n\r\n\n"; auto baz = chomp(foo); auto bar = chomp(foo, ""); auto soz = chomp(foo, "\n\r"); assert( baz == "foobar"); assert( bar == "foobar"); assert( soz == "foobar"); } ------ -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
