I have code to the effect of this:
/** My struct */
struct S
{
/** Documentation. */
mixin("int x;");
mixin("/** Documentation */ int y;");
}
Documentation for the struct S doesn't list the members 'x', or 'y'.
I think both should work as expected.
If you're synthesizing a member, there's a good change you want to synthesize the documentation too...
Comment #1 by andrej.mitrovich — 2016-09-04T17:22:47Z
*** This issue has been marked as a duplicate of issue 2420 ***