Comment #0 by snarwin+bugzilla — 2020-11-16T20:59:33Z
Example program:
---
import std.meta: AliasSeq;
/// My cool struct
struct S
{
static foreach (T; AliasSeq!(int, string, double))
/// My cool method
void method(T t) {}
}
---
As of DMD 2.094.0, the DDoc output for this program (compiled with `dmd -c -D`) contains documentation for S, but not for method.
Comment #1 by robert.schadek — 2024-12-13T19:12:50Z