Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/prop/defaultAccessors/ClassValWithGet.kt
T
2013-12-17 20:28:59 +04:00

21 lines
256 B
Kotlin

package test
class ClassVal() {
val property1 = 1
get
internal val property2 = 1
get
private val property3 = Object()
get
protected val property4: String = ""
get
public val property5: Int = 1
get
}