www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 18860] New: Destructors and postblit constructors do not

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 puremagic.com
          Reporter: dlang-bugzilla 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.)

--
May 14 2018