a564d47158
Guys, please, can you do it yourself?
11 lines
170 B
Kotlin
Vendored
11 lines
170 B
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR, JS, NATIVE
|
|
// WITH_REFLECT
|
|
|
|
inline class A(val x: Int)
|
|
|
|
fun test(x: A = A(0)) = "OK"
|
|
|
|
fun box(): String {
|
|
return (::test).callBy(mapOf())
|
|
}
|