Files
kotlin-fork/compiler/testData/lineNumber/custom/functionCallWithLambdaParam.kt
T
2019-12-23 14:03:34 +01:00

16 lines
154 B
Kotlin
Vendored

fun foo() {
foo({
val a = 1
})
foo() {
val a = 1
}
}
fun foo(f: () -> Unit) {
f()
}
// 2 6 9 12 13 3 4 7 8