Files
kotlin-fork/compiler/testData/lineNumber/custom/noParametersArgumentCallInExpression.kt
T

12 lines
137 B
Kotlin
Vendored

fun box() {
lookAtMe {
42
}
}
inline fun lookAtMe(f: () -> Int) {
val a = 21
a + f()
}
// 2 13 14 3 15 5 8 9 10