mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
16 lines
358 B
Kotlin
Vendored
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 = ""
|
|
} |