Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlow/local/LocalClassProperty.kt
T
2013-12-11 19:53:50 +04:00

12 lines
229 B
Kotlin

fun test(x: Any?) {
if (x !is String) return
class C {
val v = <!DEBUG_INFO_AUTOCAST!>x<!>.length
val vGet: Int
get() = <!DEBUG_INFO_AUTOCAST!>x<!>.length
val s: String = <!DEBUG_INFO_AUTOCAST!>x<!>
}
}