Files
kotlin-fork/compiler/testData/lineNumber/custom/noParametersArgumentCallInExpression.kt
T
2016-10-14 14:52:06 +03:00

12 lines
138 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