9 lines
176 B
Kotlin
9 lines
176 B
Kotlin
fun test(x: Any) {
|
|
if (x !is String) return
|
|
|
|
class Local(s: String = <!DEBUG_INFO_AUTOCAST!>x<!>) {
|
|
fun foo(s: String = <!DEBUG_INFO_AUTOCAST!>x<!>): String = s
|
|
}
|
|
}
|
|
|