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