digitalmars.D.learn - ddoc and method overriding.
- Alexandru Ermicioi (16/16) Aug 12 2017 Hi all,
Hi all,
Having a trivial example such as:
```D
class Foo {
/**
* A documentation info
**/
void fancy();
}
class Moo {
override void fancy();
}
```
Is there a way to tell ddoc to use Foo.fancy documentation block
for overriding Moo.fancy method?
Thx.
Aug 12 2017








Alexandru Ermicioi <alexandru.ermicioi gmail.com>