https://issues.dlang.org/show_bug.cgi?id=18860
Issue ID: 18860
Summary: Destructors and postblit constructors do not appear in
DDoc output
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Keywords: ddoc
Severity: normal
Priority: P3
Component: dmd
Assignee: [email protected]
Reporter: [email protected]
///////// test.d /////////
///
struct S
{
/// Documentation here
this(this) {}
/// Documentation here
~this() {}
}
//////////////////////////
$ dmd -D -o- test.d
$ $BROWSER test.html
(Neither declarations appear in the HTML output.)
--