Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/privateDefaultSetter.kt
T
2023-12-26 10:18:19 +00:00

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()
}
}