Thread overview
[Issue 15349] DDoc: comments on function templates are skipped for templates without doc comment
Nov 17, 2015
Lionello Lunesu
Nov 30, 2017
John Hall
Dec 17, 2022
Iain Buclaw
November 17, 2015
https://issues.dlang.org/show_bug.cgi?id=15349

Lionello Lunesu <lio+bugzilla@lunesu.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ddoc

--
November 30, 2017
https://issues.dlang.org/show_bug.cgi?id=15349

John Hall <john.michael.hall@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |john.michael.hall@gmail.com

--- Comment #1 from John Hall <john.michael.hall@gmail.com> ---
I have a related issue with the code below. When I compile this, I get the
first one, but not the second one. Further, the top line foo(f...) does not
show up, only T foo(f...)(T x).

/++
Some foo template
+/
template foo(f...)
{
    /++
    Foo here
    +/
    T foo(T x)
    {
        return f(x) + 1;
    }

    /++
    Alternate Foo here
    +/
    T foo(T x, T y)
    {
        return f(x, y) + 1;
    }
}

--
December 17, 2022
https://issues.dlang.org/show_bug.cgi?id=15349

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P1                          |P3

--
December 13
https://issues.dlang.org/show_bug.cgi?id=15349

--- Comment #2 from dlangBugzillaToGithub <robert.schadek@posteo.de> ---
THIS ISSUE HAS BEEN MOVED TO GITHUB

https://github.com/dlang/dmd/issues/19071

DO NOT COMMENT HERE ANYMORE, NOBODY WILL SEE IT, THIS ISSUE HAS BEEN MOVED TO GITHUB

--