If ddoc is generated for this code:
================
/// Something about foo.
auto foo() { return 42; }
/// Ditto
struct Foo
{
/// Something about bar.
auto bar() { return "str"; }
}
================
then the documentation for the function foo and the struct Foo is shown, correctly merged together. However, the documentation for Foo.bar does not show up. In contrast, if the struct is documented first, and ditto is used on the fnuction, then all of the struct's members show up correctly in the documentation. So, something about documenting a struct with ditto makes it so that none of its members show up in the documentation.
Comment #1 by robert.schadek — 2024-12-13T18:55:28Z