87b628a3f7
(cherry picked from commit 462bdb2) #KT-6477 Fixed
12 lines
230 B
Kotlin
Vendored
12 lines
230 B
Kotlin
Vendored
fun box() {
|
|
lookAtMe {
|
|
val c = "c"
|
|
}
|
|
}
|
|
|
|
inline fun lookAtMe(f: (String) -> Unit) {
|
|
val a = "a"
|
|
f(a) // Should be no unneeded nops on this line, that might be generated for zero-parameters lambda
|
|
}
|
|
|
|
// 2 NOP |