Files
kotlin-fork/js/js.translator/testData/lineNumbers/lambdaWithClosure.kt
T
2022-11-09 12:35:44 +00:00

9 lines
172 B
Kotlin
Vendored

fun foo(x: Int): () -> Unit = {
println(x)
}
fun bar() = 23
// LINES(JS): 1 1 1 3 2 2 3 3 1 1 1 5 5 5
// LINES(JS_IR): 1 1 3 3 1 5 5 5 5 1 1 1 2 2 3 3