17 lines
242 B
Kotlin
Vendored
17 lines
242 B
Kotlin
Vendored
class C {
|
|
|
|
var property: Int = 58
|
|
get() {
|
|
return field * 2
|
|
}
|
|
set(value) {
|
|
field += 45
|
|
}
|
|
|
|
}
|
|
|
|
fun main() {
|
|
val c = C()
|
|
c.property -= 20
|
|
println(<expr>C()</expr>.property)
|
|
} |