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.
This commit is contained in:
Steven Schäfer
2022-06-13 14:49:49 +02:00
committed by Alexander Udalov
parent f0238766df
commit 7d59c7689c
123 changed files with 216 additions and 208 deletions
@@ -3,13 +3,13 @@
fun box(): String {
val a = intArrayOf(1, 2)
val b = arrayOf("OK")
if ((a::component2)() != 2) {
if ((a::component2).let { it() } != 2) {
return "fail"
}
if ((a::get)(1) != 2) {
if ((a::get).let { it(1) } != 2) {
return "fail"
}
return (b::get)(0)
return (b::get).let { it(0) }
}