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

10 lines
139 B
Kotlin
Vendored

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