Files
kotlin-fork/compiler/testData/codegen/box/secondaryConstructors/inlineIntoTwoConstructors.kt
T
2020-09-02 20:03:38 +02:00

11 lines
167 B
Kotlin
Vendored

inline fun myRun(x: () -> String) = x()
class C {
val x = myRun { { "OK" }() }
constructor(y: Int)
constructor(y: String)
}
fun box(): String = C("").x