1c24a97b9e
When creating proxy functions in a host class for @JvmStatic members of companion object, skip functions for default parameters handling.
9 lines
136 B
Kotlin
Vendored
9 lines
136 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// WITH_RUNTIME
|
|
|
|
object Host {
|
|
@JvmStatic
|
|
fun foo(s: String = "OK") = s
|
|
}
|
|
|
|
fun box(): String = Host.foo() |