Files
kotlin/compiler/testData/lineNumber/custom/functionCallWithLambdaParam.kt
2015-11-26 11:39:18 +03: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