Files
kotlin-fork/compiler/testData/codegen/box/functions/invoke/extensionInvokeOnExpr.kt
T
Steven Schäfer 7d59c7689c JVM IR: Avoid direct invokes in callable reference tests
Due to the direct invoke optimization, most callable reference tests
were not generating callable references/lambdas.
2022-07-14 23:24:18 +02:00

22 lines
513 B
Kotlin
Vendored

class A
class B {
operator fun A.invoke() = "##"
operator fun A.invoke(i: Int) = "#${i}"
}
fun foo() = A()
fun B.test(): String {
if (A()() != "##") return "fail1"
if (A()(1) != "#1") return "fail2"
if (foo()() != "##") return "fail3"
if (foo()(42) != "#42") return "fail4"
if ((foo())(42) != "#42") return "fail5"
if ({ -> A()}.let { it() }() != "##") return "fail6"
if ({ -> A()}.let { it() }(37) != "#37") return "fail7"
return "OK"
}
fun box(): String = B().test()