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

13 lines
165 B
Kotlin

fun test(x: Any) {
if (x !is String) return
class LocalOuter {
inner class Local {
{
<!DEBUG_INFO_SMARTCAST!>x<!>.length
}
}
}
}