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