August 12, 2017
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.