mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
9 lines
201 B
Kotlin
9 lines
201 B
Kotlin
fun foo(x: Any?) {
|
|
if (x is String) {
|
|
object : Base(<!DEBUG_INFO_SMARTCAST!>x<!>) {
|
|
fun bar() = <!DEBUG_INFO_SMARTCAST!>x<!>.length
|
|
}
|
|
}
|
|
}
|
|
|
|
open class Base(s: String) |