diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-10-28 15:23:50 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-10-29 11:57:24 +0100 |
commit | 36f4b916bc956d8f5c9f6b55d295ea9a69c9f0bc (patch) | |
tree | cab9e34dec64cce5cea97bbf9f1bd5e276ac42be /test/data/format/inheritedMembers.md | |
parent | 78455025203b911c855f7cfc0d75270dd7351199 (diff) | |
download | dokka-36f4b916bc956d8f5c9f6b55d295ea9a69c9f0bc.tar.gz dokka-36f4b916bc956d8f5c9f6b55d295ea9a69c9f0bc.tar.bz2 dokka-36f4b916bc956d8f5c9f6b55d295ea9a69c9f0bc.zip |
show inherited members in the list of class members
Diffstat (limited to 'test/data/format/inheritedMembers.md')
-rw-r--r-- | test/data/format/inheritedMembers.md | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/test/data/format/inheritedMembers.md b/test/data/format/inheritedMembers.md new file mode 100644 index 00000000..d58d3974 --- /dev/null +++ b/test/data/format/inheritedMembers.md @@ -0,0 +1,38 @@ +[test](test/index) / [Bar](test/-bar/index) + + +# Bar + +`class Bar : [Foo](test/-foo/index)` + + + +### Constructors + + +| [<init>](test/-bar/-init-) | `Bar()` | + + +### Properties + + +| [secondProp](test/-bar/second-prop) | `val secondProp: Int` | + + +### Inherited Properties + + +| [firstProp](test/-foo/first-prop) | `val firstProp: Int` | + + +### Functions + + +| [second](test/-bar/second) | `fun second(): Unit` | + + +### Inherited Functions + + +| [first](test/-foo/first) | `fun first(): Unit` | + |