[Issue 2420] New: mixins are not considered in ddoc
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Wed Oct 15 11:10:41 PDT 2008
http://d.puremagic.com/issues/show_bug.cgi?id=2420
Summary: mixins are not considered in ddoc
Product: D
Version: 1.033
Platform: All
OS/Version: Other
Status: NEW
Severity: minor
Priority: P3
Component: DMD
AssignedTo: bugzilla at digitalmars.com
ReportedBy: default_357-line at yahoo.de
Consider the following code:
module test108;
// this works and shows up
/// Test 1
void test1() { }
// doesn't show up
mixin("/// Test 2");
void test2() { }
// doesn't show up either
mixin("/// Test 3
void test3() { }");
If this were fixed, documentation could be moved to an external text file and
handled via CTFE and import.
--
More information about the Digitalmars-d-bugs
mailing list