https://issues.dlang.org/show_bug.cgi?id=16992

--- Comment #10 from Nick Treleaven <[email protected]> ---
(In reply to RazvanN from comment #2)
> It seems that the documentation builder has a problem with static methods.
> After erasing the static keyword from one method, the documentation appeared
> as usual.

It only happens when the method is a template. Reduced test case:

struct Date
{
    ///
    static void fromISOString()()
    {}

    ///
    unittest
    {
        // hi
    }
}

--

Reply via email to