Files
kotlin-fork/jps-plugin/testData/incremental/pureKotlin/valRemoveCustomAccessor/A.kt
T

7 lines
79 B
Kotlin
Vendored

package test
class A() {
val x: Int? = 100
get() = field?.inc()
}