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" }