Files
kotlin/compiler/testData/diagnostics/tests/dataFlow/local/LocalClassProperty.kt
2014-10-01 18:52:52 +04:00

12 lines
232 B
Kotlin

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