Files
kotlin-fork/js/js.translator/testData/lineNumbers/lambdaWithClosure.kt
T
2017-07-06 10:20:48 +03:00

7 lines
97 B
Kotlin
Vendored

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