diff options
author | Krystian Ujma <krystianujma@gmail.com> | 2019-02-25 16:19:40 +0100 |
---|---|---|
committer | Simon Ogorodnik <simon.ogorodnik@gmail.com> | 2019-02-25 18:19:40 +0300 |
commit | 46af103c8dd43839e898368dbda744fa522e9789 (patch) | |
tree | d0da3884c0487f16615b406a8b4d82a0656f4d49 /core/testdata/javadoc | |
parent | 9e2ca870881823498c8f65afda7bd9b77e575a2d (diff) | |
download | dokka-46af103c8dd43839e898368dbda744fa522e9789.tar.gz dokka-46af103c8dd43839e898368dbda744fa522e9789.tar.bz2 dokka-46af103c8dd43839e898368dbda744fa522e9789.zip |
Fix protected property getters and setters show the wrong visibility… (#402)
Diffstat (limited to 'core/testdata/javadoc')
-rw-r--r-- | core/testdata/javadoc/visibilityModifiers.kt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/core/testdata/javadoc/visibilityModifiers.kt b/core/testdata/javadoc/visibilityModifiers.kt new file mode 100644 index 00000000..e48e7f62 --- /dev/null +++ b/core/testdata/javadoc/visibilityModifiers.kt @@ -0,0 +1,15 @@ +package foo + +abstract class Apple { + protected var name: String = "foo" + internal var weight: Int = 180 + var rating: Int = 10 + private var color: String = "red" + + companion object { + @JvmStatic + val code : Int = 123456 + } + + +}
\ No newline at end of file |