www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - ddoc and method overriding.

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