/**
* Some documentation
*/
pragma(inline, true);
void myDocumentedFunction() {}
No documentation is generated for myDocumentedFunction
Comment #1 by greensunny12 — 2018-01-17T09:37:07Z
You documented an empty statement.
Pragmas can stand by itself, but they don't have any effect:
https://dlang.org/spec/pragma.html
So what you wanted to do was:
/**
Doc
*/
pragma(inline, true) // <- no semicolon here
void myDocumentedFunction() {}