Files
kotlin-fork/compiler/testData/lineNumber/custom/functionCallWithLambdaParam.kt
T
Steven Schäfer efb938a7c8 (Un)mute tests
2019-07-31 11:18:44 +02:00

17 lines
180 B
Kotlin
Vendored

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