Files
kotlin-fork/compiler/testData/codegen/bytecodeText/inline/linenumberForOneParametersArgumentCall.kt
T
2021-09-29 19:14:32 +03:00

13 lines
231 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
}
// 0 NOP