3d28c4cdb2
#KT-2835 In Progress #KT-2225 In Progress #KT-338 In Progress
13 lines
138 B
Kotlin
13 lines
138 B
Kotlin
fun test(x: Any) {
|
|
if (x !is String) return
|
|
|
|
class LocalOuter {
|
|
inner class Local {
|
|
{
|
|
x.length
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|