Files
kotlin-fork/js/js.translator/testData/lineNumbers/optionalArgs.kt
T
2023-01-17 18:14:17 +00:00

12 lines
202 B
Kotlin
Vendored

fun box(
x: Int = 23,
y: Int =
42
) {
println(x)
println(y)
}
// LINES(JS): 1 8 2 2 2 2 3 3 3 4 6 6 7 7
// LINES(JS_IR): 1 2 3 5 2 4 6 6 7 7