Files
kotlin/compiler/testData/diagnostics/tests/dataFlow/local/NestedLocalClass.fir.kt

12 lines
169 B
Kotlin
Vendored

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