Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/fieldInGetter.kt
T

6 lines
132 B
Kotlin
Vendored

val x: Int? = 0
get() {
if (field != null) return <!DEBUG_INFO_SMARTCAST!>field<!>.hashCode()
return null
}