[Issue 3012] string.format is broken
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Wed May 20 05:06:35 PDT 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3012
Gide Nwawudu <gide at nwawudu.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
CC| |gide at nwawudu.com
Resolution| |INVALID
--- Comment #1 from Gide Nwawudu <gide at nwawudu.com> 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: -------
More information about the Digitalmars-d-bugs
mailing list