Files
kotlin/plugins/allopen/allopen-cli/testData/bytecodeListing/privateMembers.kt
2017-03-22 22:03:00 +03:00

16 lines
358 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 = ""
}