diff options
Diffstat (limited to 'integration-tests/maven/projects/it-maven/src/main/kotlin/it/protected')
-rw-r--r-- | integration-tests/maven/projects/it-maven/src/main/kotlin/it/protected/ProtectedClass.kt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/integration-tests/maven/projects/it-maven/src/main/kotlin/it/protected/ProtectedClass.kt b/integration-tests/maven/projects/it-maven/src/main/kotlin/it/protected/ProtectedClass.kt new file mode 100644 index 00000000..ad19f1a1 --- /dev/null +++ b/integration-tests/maven/projects/it-maven/src/main/kotlin/it/protected/ProtectedClass.kt @@ -0,0 +1,10 @@ +package it.protected + +/** + * Protected class should be visible because it's included in documentedVisibilities + * + * §PROTECTED§ (marker for asserts) + */ +protected class ProtectedClass { + protected fun protectedFun(): String = "protected" +} |