aboutsummaryrefslogtreecommitdiff
path: root/dokka-integration-tests/cli/projects/it-cli/src/main/kotlin/it/protected/ProtectedClass.kt
blob: ad19f1a1a540c1f5eb936e51f3d56fad4032b6f6 (plain)
1
2
3
4
5
6
7
8
9
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"
}