Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/prop/defaultAccessors/ClassVarWithGet.kt
T

20 lines
295 B
Kotlin
Vendored

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