18 lines
397 B
Kotlin
Vendored
18 lines
397 B
Kotlin
Vendored
// JVM_ABI_K1_K2_DIFF: KT-63984
|
|
open class Test {
|
|
var publicProperty: String = ""
|
|
private set
|
|
|
|
protected var protectedProperty: String = ""
|
|
private set
|
|
|
|
internal var internalProperty: String = ""
|
|
private set
|
|
|
|
fun update(i: Int) {
|
|
publicProperty = i.toString()
|
|
protectedProperty = i.toString()
|
|
internalProperty = i.toString()
|
|
}
|
|
}
|