7 lines
79 B
Kotlin
Vendored
7 lines
79 B
Kotlin
Vendored
package test
|
|
|
|
class A() {
|
|
val x: Int? = 100
|
|
get() = field?.inc()
|
|
}
|