Files
kotlin-fork/js/js.translator/testData/lineNumbers/expressionAsFunctionBody.kt
T
2022-03-28 21:47:43 +00:00

9 lines
109 B
Kotlin
Vendored

fun box() =
foo()
fun foo() =
23
// LINES(JS): 1 2 2 4 5 5
// LINES(JS_IR): 2 2 * 5 5