3024ec3da3
Although these dumps don't really show if something is a `FirFunctionCall` or a `FirImplicitInvokeCall`, they do show what goes into the receiver, and what are value arguments.
8 lines
118 B
Kotlin
Vendored
8 lines
118 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// ISSUE: KT-64891
|
|
// FIR_DUMP
|
|
|
|
fun test(a: (Int.() -> Int)?, b: Int.() -> Int) {
|
|
2.(a ?: b)()
|
|
}
|