Files
kotlin-fork/plugins/allopen/allopen-cli/testData/bytecodeListing/privateMembers.kt
T

18 lines
409 B
Kotlin
Vendored

annotation class AllOpen
@AllOpen
private class Test {
fun publicMethod() {}
val publicProp: String = ""
protected fun protectedMethod() {}
protected val protectedProp: String = ""
private fun privateMethod() {}
private val privateProp: String = ""
internal fun internalMethod() {}
internal val internalProp: String = ""
private tailrec fun privateTailrecMethod() {}
}