7d59c7689c
Due to the direct invoke optimization, most callable reference tests were not generating callable references/lambdas.
20 lines
363 B
Kotlin
Vendored
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"
|
|
}
|