593937d302
callBy is able to handle optional parameters. #KT-8827 Fixed
4 lines
83 B
Kotlin
Vendored
4 lines
83 B
Kotlin
Vendored
class A(val result: String = "OK")
|
|
|
|
fun box(): String = ::A.callBy(mapOf()).result
|