mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
16 lines
278 B
Kotlin
Vendored
16 lines
278 B
Kotlin
Vendored
fun test(x: Any) {
|
|
if (x !is String) return
|
|
|
|
class LocalOuter {
|
|
fun foo(y: Any) {
|
|
if (y !is String) return
|
|
class Local {
|
|
init {
|
|
x.<!UNRESOLVED_REFERENCE!>length<!>
|
|
y.<!UNRESOLVED_REFERENCE!>length<!>
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|