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

13 lines
164 B
Kotlin

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