mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
17 lines
220 B
Kotlin
17 lines
220 B
Kotlin
fun test(x: Any) {
|
|
if (x !is String) return
|
|
|
|
class LocalOuter {
|
|
fun foo(y: Any) {
|
|
if (y !is String) return
|
|
class Local {
|
|
{
|
|
x.length
|
|
y.length
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|