[Issue 18860] New: Destructors and postblit constructors do not appear in DDoc output
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Tue May 15 03:14:14 UTC 2018
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: nobody at puremagic.com
Reporter: dlang-bugzilla at thecybershadow.net
///////// 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.)
--
More information about the Digitalmars-d-bugs
mailing list