Files
kotlin-fork/compiler/testData/codegen/box/callableReference/function/topLevelFromExtension.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

20 lines
363 B
Kotlin
Vendored

fun <T> run(arg1: T, arg2: T, funRef:(T,T) -> T): T {
return funRef(arg1, arg2)
}
fun foo(o: Int, k: Int) = o + k
class A
fun A.bar() = (::foo).let { it(111, 222) }
fun box(): String {
val result = A().bar()
if (result != 333) return "Fail $result"
var r = run(111, 222, ::foo)
if (result != 333) return "Fail $result"
return "OK"
}