mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
12 lines
232 B
Kotlin
12 lines
232 B
Kotlin
fun test(x: Any?) {
|
|
if (x !is String) return
|
|
|
|
class C {
|
|
val v = <!DEBUG_INFO_SMARTCAST!>x<!>.length
|
|
|
|
val vGet: Int
|
|
get() = <!DEBUG_INFO_SMARTCAST!>x<!>.length
|
|
|
|
val s: String = <!DEBUG_INFO_SMARTCAST!>x<!>
|
|
}
|
|
} |