[Issue 6491] New: Fully qualified enums in default arguments of non-template functions are generated with an extra 'module' keyword
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sun Aug 14 09:08:57 PDT 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6491
Summary: Fully qualified enums in default arguments of
non-template functions are generated with an extra
'module' keyword
Product: D
Version: D2
Platform: Other
OS/Version: Mac OS X
Status: NEW
Keywords: ddoc
Severity: minor
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: kennytm at gmail.com
--- Comment #0 from kennytm at gmail.com 2011-08-14 09:08:54 PDT ---
Example:
--------------------
/// test
void bug6491(string s = std.ascii.hexDigits) {}
--------------------
Generated DDoc will read:
--------------------
void bug6491(string s = module ascii.hexDigits);
test
--------------------
The 'module' should not exist, it should read 'string s = std.ascii.hexDigits'.
This can also be seen at
http://d-programming-language.org/phobos/std_stream.html#EndianStream. The
problem doesn't exist if the function is templated.
--
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