mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Also fix test data of the kotlinp test and remove the newly added test case in the obsolete PropertyGenTest #KT-20344 Fixed
17 lines
365 B
Kotlin
Vendored
17 lines
365 B
Kotlin
Vendored
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()
|
|
}
|
|
}
|