http://d.puremagic.com/issues/show_bug.cgi?id=3012
Gide Nwawudu <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution| |INVALID --- Comment #1 from Gide Nwawudu <[email protected]> 2009-05-20 05:06:34 PDT --- > string s= string.format("abc","abc"); Shouldn't that be std.string.format? I think what is written is equalivent to; format(string,"abc","abc"); import std.string; void main() { string s = std.string.format("abc","abc"); //OK // -or- string s1 = format("abc","abc"); //OK } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
