Files
kotlin-fork/compiler/testData/codegen/box/reflection/callBy/inlineClassDefaultArguments.kt
T
Dmitry Petrov a564d47158 Minor: unmute FIR black box test
Guys, please, can you do it yourself?
2020-05-01 13:14:21 +03:00

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())
}