13 lines
152 B
Kotlin
Vendored
13 lines
152 B
Kotlin
Vendored
fun test(x: Any?) {
|
|
if (x !is String) return
|
|
|
|
class C {
|
|
val v = x.length
|
|
|
|
val vGet: Int
|
|
get() = x.length
|
|
|
|
val s: String = x
|
|
}
|
|
}
|